Commit 63166871 authored by Antoine Catton's avatar Antoine Catton

Fix lxc mount entry point path

parent fc076088
...@@ -133,8 +133,8 @@ def create(sr_directory, partition_path, conf): ...@@ -133,8 +133,8 @@ def create(sr_directory, partition_path, conf):
'c 254:0 rwm', 'c 254:0 rwm',
] ]
lxc.mount.entry = [ lxc.mount.entry = [
'proc %s proc nodev,noexec,nosuid 0 0' % os.path.join(partition_path, 'proc'), 'proc %s proc nodev,noexec,nosuid 0 0' % os.path.join(rootfs_dir, 'proc'),
'sysfs %s sysfs defaults 0 0' % os.path.join(partition_path, 'sys'), 'sysfs %s sysfs defaults 0 0' % os.path.join(rootfs_dir, 'sys'),
] ]
lxc.rootfs = rootfs_dir lxc.rootfs = rootfs_dir
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment