diff options
Diffstat (limited to 'nova/rootwrap')
| -rwxr-xr-x | nova/rootwrap/compute.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/nova/rootwrap/compute.py b/nova/rootwrap/compute.py index cd971e0d1..cee4cca2c 100755 --- a/nova/rootwrap/compute.py +++ b/nova/rootwrap/compute.py @@ -44,6 +44,14 @@ filters = [ # nova/virt/disk/loop.py: 'losetup', '--detach', device CommandFilter("/sbin/losetup", "root"), + # nova/virt/disk/guestfs.py: 'guestmount', '--rw', '-a', image, '-i' + # nova/virt/disk/guestfs.py: 'guestmount', '--rw', '-a', image, '-m' dev + Commandfilter("/usr/bin/guestmount", "root"), + + # nova/virt/disk/guestfs.py: 'fusermount', 'u', mount_dir + Commandfilter("/bin/fusermount", "root"), + Commandfilter("/usr/bin/fusermount", "root"), + # nova/virt/disk/api.py: 'tee', metadata_path # nova/virt/disk/api.py: 'tee', '-a', keyfile # nova/virt/disk/api.py: 'tee', netfile |
