From fede8fb5d4b9c964151f173f9761a369f4ad747f Mon Sep 17 00:00:00 2001 From: Seblu <sebastien.luttringer@smartjog.com> Date: Mon, 6 Jun 2011 12:25:06 +0200 Subject: [PATCH] script in tarball have now rights 755 --- installsystems/image.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installsystems/image.py b/installsystems/image.py index b645f68..fac0400 100644 --- a/installsystems/image.py +++ b/installsystems/image.py @@ -185,7 +185,7 @@ class SourceImage(Image): '''Filter files which can be included in scripts tarball''' if not tinfo.name in ("parser", "setup") and os.path.splitext(tinfo.name)[1] != ".py": return None - tinfo.mode = 0555 + tinfo.mode = 0755 tinfo.uid = tinfo.gid = 0 tinfo.uname = tinfo.gname = "root" return tinfo -- GitLab