From 8f1eca7c04cbae65de5778a5a28890303439e154 Mon Sep 17 00:00:00 2001 From: Martin Kosek Date: Wed, 7 Sep 2011 13:08:44 +0200 Subject: Fix configure.jar permissions Remove executable bit added by /usr/bin/signtool https://fedorahosted.org/freeipa/ticket/1644 --- ipaserver/install/httpinstance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipaserver/install/httpinstance.py') diff --git a/ipaserver/install/httpinstance.py b/ipaserver/install/httpinstance.py index 775d5a781..4294bee1b 100644 --- a/ipaserver/install/httpinstance.py +++ b/ipaserver/install/httpinstance.py @@ -253,7 +253,7 @@ class HTTPInstance(service.Service): "-e", ".html", "-p", pwd, tmpdir]) shutil.rmtree(tmpdir) - os.chmod(target_fname, 0755) # everyone can execute the jar + os.chmod(target_fname, 0644) def __publish_ca_cert(self): ca_db = certs.CertDB(self.realm) -- cgit