summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2015-06-09 17:43:32 +0100
committerSam Thursfield <sam.thursfield@codethink.co.uk>2015-06-09 17:43:32 +0100
commit289c04d0d219a8f92f470a2d2e28791f732c2deb (patch)
tree002cac18c8dbabf03c50819526d3ff2bfef8e780
parentc7fe359466349c5e7c90318dc789a79acc4ec19c (diff)
downloadsandboxlib-289c04d0d219a8f92f470a2d2e28791f732c2deb.tar.gz
Fix mistake in CAPABILITIES dicts
-rw-r--r--sandboxlib/chroot.py2
-rw-r--r--sandboxlib/linux_user_chroot.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/sandboxlib/chroot.py b/sandboxlib/chroot.py
index 71e45e4..6adaa06 100644
--- a/sandboxlib/chroot.py
+++ b/sandboxlib/chroot.py
@@ -45,7 +45,7 @@ import sandboxlib
CAPABILITIES = {
'network': ['undefined'],
'mounts': ['undefined'],
- 'writable_paths': ['all'],
+ 'filesystem_writable_paths': ['all'],
}
diff --git a/sandboxlib/linux_user_chroot.py b/sandboxlib/linux_user_chroot.py
index 4b88e50..29e6e06 100644
--- a/sandboxlib/linux_user_chroot.py
+++ b/sandboxlib/linux_user_chroot.py
@@ -44,7 +44,7 @@ import sandboxlib
CAPABILITIES = {
'network': ['isolated', 'undefined'],
'mounts': ['isolated', 'undefined'],
- 'writable_paths': ['all', 'any'],
+ 'filesystem_writable_paths': ['all', 'any'],
}