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:
Steve McIntyre 2017-06-20 14:43:29 +01:00 committed by Jeff Epler
parent 2736511983
commit fc2d1bca00

View file

@ -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',