blob: c8c533679b89df70c9cc860c712f8a25d6566148 [file] [log] [blame]
#!/usr/bin/env python
"""
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""
import os
import ConfigParser
from resource_management.core.logger import Logger
"""
returns the ambari version on an agent host
"""
def get_ambari_version_agent():
ambari_version = None
AMBARI_AGENT_CONF = '/etc/ambari-agent/conf/ambari-agent.ini'
if os.path.exists(AMBARI_AGENT_CONF):
try:
ambari_agent_config = ConfigParser.RawConfigParser()
ambari_agent_config.read(AMBARI_AGENT_CONF)
data_dir = ambari_agent_config.get('agent', 'prefix')
ver_file = os.path.join(data_dir, 'version')
with open(ver_file, "r") as f:
ambari_version = f.read().strip()
except Exception, e:
Logger.info('Unable to determine ambari version from the agent version file.')
Logger.debug('Exception: %s' % str(e))
pass
pass
return ambari_version