You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by jl...@apache.org on 2017/09/26 05:20:16 UTC

[25/50] [abbrv] ambari git commit: AMBARI-22039. File "hdfs.headless.keytab" has incorrect permission (aonishuk)

AMBARI-22039. File "hdfs.headless.keytab" has incorrect permission  (aonishuk)


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

Branch: refs/heads/branch-feature-AMBARI-14714
Commit: e4cadbb15876e635b6831d2a488edda80d2d0554
Parents: d966298
Author: Andrew Onishuk <ao...@hortonworks.com>
Authored: Fri Sep 22 13:42:26 2017 +0300
Committer: Andrew Onishuk <ao...@hortonworks.com>
Committed: Fri Sep 22 13:42:26 2017 +0300

----------------------------------------------------------------------
 .../common-services/ZEPPELIN/0.7.0/package/scripts/master.py     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/e4cadbb1/ambari-server/src/main/resources/common-services/ZEPPELIN/0.7.0/package/scripts/master.py
----------------------------------------------------------------------
diff --git a/ambari-server/src/main/resources/common-services/ZEPPELIN/0.7.0/package/scripts/master.py b/ambari-server/src/main/resources/common-services/ZEPPELIN/0.7.0/package/scripts/master.py
index 7d44d16..382566e 100644
--- a/ambari-server/src/main/resources/common-services/ZEPPELIN/0.7.0/package/scripts/master.py
+++ b/ambari-server/src/main/resources/common-services/ZEPPELIN/0.7.0/package/scripts/master.py
@@ -327,7 +327,7 @@ class Master(Script):
                               action="download_on_execute",
                               source=self.getZeppelinConfFS(params),
                               group=params.zeppelin_group,
-                              user=params.zeppelin_user)
+                              owner=params.zeppelin_user)
         except Fail as fail:
           if "doesn't exist" not in fail.args[0]:
             print "Error getting interpreter.json from HDFS"
@@ -357,7 +357,7 @@ class Master(Script):
                             action="create_on_execute",
                             source=interpreter_config,
                             group=params.zeppelin_group,
-                            user=params.zeppelin_user,
+                            owner=params.zeppelin_user,
                             replace_existing_files=True)
 
   def update_kerberos_properties(self):