Repository: ambari Updated Branches: refs/heads/trunk 2a36fc5ec -> 5b6971ae4
AMBARI-18244. Add Service for Atlas did not call conf-select, so failed to find /etc/atlas/conf/users-credentials.properties (alejandro) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/5b6971ae Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/5b6971ae Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/5b6971ae Branch: refs/heads/trunk Commit: 5b6971ae47a826f773b8ccd37dadc049e48a6a68 Parents: 2a36fc5 Author: Alejandro Fernandez <[email protected]> Authored: Tue Aug 23 16:46:34 2016 -0700 Committer: Alejandro Fernandez <[email protected]> Committed: Tue Aug 23 17:12:37 2016 -0700 ---------------------------------------------------------------------- .../resource_management/libraries/functions/conf_select.py | 6 ++++++ 1 file changed, 6 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/5b6971ae/ambari-common/src/main/python/resource_management/libraries/functions/conf_select.py ---------------------------------------------------------------------- diff --git a/ambari-common/src/main/python/resource_management/libraries/functions/conf_select.py b/ambari-common/src/main/python/resource_management/libraries/functions/conf_select.py index b7e873f..c60b324 100644 --- a/ambari-common/src/main/python/resource_management/libraries/functions/conf_select.py +++ b/ambari-common/src/main/python/resource_management/libraries/functions/conf_select.py @@ -45,6 +45,12 @@ from resource_management.libraries.functions import StackFeature STACK_ROOT_PATTERN = "{{ stack_root }}" _PACKAGE_DIRS = { + "atlas": [ + { + "conf_dir": "/etc/atlas/conf", + "current_dir": "{0}/current/atlas-client/conf".format(STACK_ROOT_PATTERN) + } + ], "accumulo": [ { "conf_dir": "/etc/accumulo/conf",
