Repository: ambari Updated Branches: refs/heads/trunk 85ff51496 -> e94d9403b
AMBARI-8884. Host Check: adjust umask to handle up-to-027 (aonishuk) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/e94d9403 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/e94d9403 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/e94d9403 Branch: refs/heads/trunk Commit: e94d9403b6ef8c6f90fbbfda79d66ffa7f8f4034 Parents: 85ff514 Author: Andrew Onishuk <[email protected]> Authored: Tue Dec 23 15:37:41 2014 +0200 Committer: Andrew Onishuk <[email protected]> Committed: Tue Dec 23 15:37:41 2014 +0200 ---------------------------------------------------------------------- ambari-web/app/controllers/wizard/step3_controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/e94d9403/ambari-web/app/controllers/wizard/step3_controller.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/controllers/wizard/step3_controller.js b/ambari-web/app/controllers/wizard/step3_controller.js index 7c044a5..b5283a4 100644 --- a/ambari-web/app/controllers/wizard/step3_controller.js +++ b/ambari-web/app/controllers/wizard/step3_controller.js @@ -1467,7 +1467,7 @@ App.WizardStep3Controller = Em.Controller.extend({ //parse misc warnings for host var umask = _host.Hosts.last_agent_env.umask; - if (umask && umask !== 18) { + if (umask && umask > 23) { warning = warnings.filterProperty('category', 'misc').findProperty('name', umask); if (warning) { warning.hosts.push(_host.Hosts.host_name);
