From be03c6bce848e66cf0000f50219724a7c3db80a4 Mon Sep 17 00:00:00 2001 From: brent s Date: Wed, 20 Jan 2021 04:05:16 -0500 Subject: [PATCH] the grub templates need to be executable --- _base.py | 1 + 1 file changed, 1 insertion(+) diff --git a/_base.py b/_base.py index c3f1690..c09c84e 100644 --- a/_base.py +++ b/_base.py @@ -118,6 +118,7 @@ class BaseUpdater(object): os.path.expanduser( os.path.join(self.grub_iso_dir, self.dest_file))))) + os.chmod(self.grub_cfg, 0o0755) cmd = subprocess.run(['grub-mkconfig', '-o', '{0}/grub/grub.cfg'.format(self.boot_dir)], stdout = subprocess.PIPE,