Author: swagle
Date: Fri Apr 5 23:46:08 2013
New Revision: 1465158
URL: http://svn.apache.org/r1465158
Log:
AMBARI-1828. Clear text passwords appear in log files & config files. (swagle)
Modified:
incubator/ambari/trunk/CHANGES.txt
incubator/ambari/trunk/ambari-agent/src/main/python/ambari_agent/manifestGenerator.py
Modified: incubator/ambari/trunk/CHANGES.txt
URL:
http://svn.apache.org/viewvc/incubator/ambari/trunk/CHANGES.txt?rev=1465158&r1=1465157&r2=1465158&view=diff
==============================================================================
--- incubator/ambari/trunk/CHANGES.txt (original)
+++ incubator/ambari/trunk/CHANGES.txt Fri Apr 5 23:46:08 2013
@@ -560,6 +560,8 @@ Trunk (unreleased changes):
BUG FIXES
+ AMBARI-1828. Clear text passwords appear in log files & config files. (swagle)
+
AMBARI-1826. Use service stop and start for Nagios/Ganglia/MySQL rather than
puppet artifacts for starting stopping these services. (smohanty)
Modified:
incubator/ambari/trunk/ambari-agent/src/main/python/ambari_agent/manifestGenerator.py
URL:
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-agent/src/main/python/ambari_agent/manifestGenerator.py?rev=1465158&r1=1465157&r2=1465158&view=diff
==============================================================================
---
incubator/ambari/trunk/ambari-agent/src/main/python/ambari_agent/manifestGenerator.py
(original)
+++
incubator/ambari/trunk/ambari-agent/src/main/python/ambari_agent/manifestGenerator.py
Fri Apr 5 23:46:08 2013
@@ -166,7 +166,7 @@ def writeFlatConfigurations(outputFile,
flatDict = {}
fqdn = hostname.hostname()
public_fqdn = hostname.public_hostname()
- logger.info("Generating global configurations =>\n" +
pprint.pformat(flatConfigs))
+ logger.debug("Generating global configurations =>\n" +
pprint.pformat(flatConfigs))
for flatConfigName in flatConfigs.iterkeys():
for flatConfig in flatConfigs[flatConfigName].iterkeys():
flatDict[flatConfig] = flatConfigs[flatConfigName][flatConfig]
@@ -181,7 +181,7 @@ def writeNonGlobalConfigurations(outputF
for configName in xmlConfigs.iterkeys():
config = xmlConfigs[configName]
- logger.info("Generating " + configName + ",configurations =>\n" +
pprint.pformat(config))
+ logger.debug("Generating " + configName + ", configurations =>\n" +
pprint.pformat(config))
outputFile.write(configName + '=> {\n')
coma = ''
for configParam in config.iterkeys():