From 289c04d0d219a8f92f470a2d2e28791f732c2deb Mon Sep 17 00:00:00 2001 From: Sam Thursfield Date: Tue, 9 Jun 2015 17:43:32 +0100 Subject: Fix mistake in CAPABILITIES dicts --- sandboxlib/chroot.py | 2 +- sandboxlib/linux_user_chroot.py | 2 +- 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'], } -- cgit v1.2.1