You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by re...@apache.org on 2015/11/29 22:07:38 UTC

[03/10] git commit: updated refs/heads/master to 7e64c12

CLOUDSTACK-9078: Gave scripts executable permissions.


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/e2fc2704
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/e2fc2704
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/e2fc2704

Branch: refs/heads/master
Commit: e2fc270480916901b2bfd4f4bab376a6008f9f57
Parents: 1e73f66
Author: Boris Schrijver <bo...@pcextreme.nl>
Authored: Mon Nov 23 00:07:29 2015 +0100
Committer: Boris Schrijver <bo...@pcextreme.nl>
Committed: Mon Nov 23 00:25:24 2015 +0100

----------------------------------------------------------------------
 python/lib/cloudutils/serviceConfigServer.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/e2fc2704/python/lib/cloudutils/serviceConfigServer.py
----------------------------------------------------------------------
diff --git a/python/lib/cloudutils/serviceConfigServer.py b/python/lib/cloudutils/serviceConfigServer.py
index ea7e125..4d45b13 100644
--- a/python/lib/cloudutils/serviceConfigServer.py
+++ b/python/lib/cloudutils/serviceConfigServer.py
@@ -121,7 +121,8 @@ class cloudManagementConfig(serviceCfgBase):
         #distro like sl 6.1 needs this folder, or tomcat6 failed to start
         checkHostName()
         bash("mkdir /var/log/cloudstack-management/")
-        bash("chown cloud:cloud -R /var/lib/cloudstack")
+        bash("chown cloud:cloud -R /var/lib/cloudstack/")
+        bash("chmod +x -R /usr/share/cloudstack-management/webapps/client/WEB-INF/classes/scripts/")
         #set max process per account is unlimited
         if os.path.exists("/etc/security/limits.conf"):
             cfo = configFileOps("/etc/security/limits.conf")