Explicitly set the mode of the ISO root dir to 0755
Otherwise, we get the default 0700 that comes from mkstemp()
This commit is contained in:
parent
2736511983
commit
fc2d1bca00
1 changed files with 1 additions and 0 deletions
|
|
@ -38,6 +38,7 @@ class Xorriso(object):
|
|||
self.args.extend(['-outdev', self.image_output])
|
||||
self.args.extend(['-volid', self.volume_id])
|
||||
self.args.extend(['-map', cdroot, '/'])
|
||||
self.args.extend(['-chmod', '0755', '/', '--'])
|
||||
|
||||
if self.isolinux:
|
||||
self.args.extend(['-boot_image', 'isolinux', 'dir=/isolinux',
|
||||
|
|
|
|||
Loading…
Reference in a new issue