You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by ao...@apache.org on 2017/04/11 11:14:36 UTC

[14/22] ambari git commit: AMBARI-20695. "ambari-server upgrade" command does not change owner for all dirs.(vbrodetskyi)

AMBARI-20695. "ambari-server upgrade" command does not change owner for all dirs.(vbrodetskyi)


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

Branch: refs/heads/branch-3.0-perf
Commit: 9ca337ca944b26d53ec7b40fd7f5b0ce8789158e
Parents: 24c038c
Author: Vitaly Brodetskyi <vb...@hortonworks.com>
Authored: Fri Apr 7 14:28:33 2017 +0300
Committer: Andrew Onishuk <ao...@hortonworks.com>
Committed: Tue Apr 11 14:14:12 2017 +0300

----------------------------------------------------------------------
 .../src/main/python/ambari_server/serverConfiguration.py          | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/9ca337ca/ambari-server/src/main/python/ambari_server/serverConfiguration.py
----------------------------------------------------------------------
diff --git a/ambari-server/src/main/python/ambari_server/serverConfiguration.py b/ambari-server/src/main/python/ambari_server/serverConfiguration.py
index fb016d0..7eba9db 100644
--- a/ambari-server/src/main/python/ambari_server/serverConfiguration.py
+++ b/ambari-server/src/main/python/ambari_server/serverConfiguration.py
@@ -530,6 +530,9 @@ class ServerConfigDefaultsLinux(ServerConfigDefaults):
       (AmbariPath.get("/var/lib/ambari-server/keys/.ssh"), "700", "{0}", False),
       (AmbariPath.get("/var/lib/ambari-server/resources/common-services/"), "755", "{0}", True),
       (AmbariPath.get("/var/lib/ambari-server/resources/stacks/"), "755", "{0}", True),
+      (AmbariPath.get("/var/lib/ambari-server/resources/extensions/"), "755", "{0}", True),
+      (AmbariPath.get("/var/lib/ambari-server/resources/dashboards/"), "755", "{0}", True),
+      (AmbariPath.get("/var/lib/ambari-server/resources/mpacks/"), "755", "{0}", True),
       (AmbariPath.get("/var/lib/ambari-server/resources/custom_actions/"), "755", "{0}", True),
       (AmbariPath.get("/var/lib/ambari-server/resources/host_scripts/"), "755", "{0}", True),
       (AmbariPath.get("/var/lib/ambari-server/resources/views/*"), "644", "{0}", True),