标签: python parsing puppet puppet-enterprise
我们正在使用Puppet 3.7.4来管理我们的服务器(RedHat和Windows服务器)。
Puppet 3.7.4
我们有python API在服务器上运行远程命令puppet agent -t。 有时会应用新类,有时类失败。
python API
puppet agent -t
结果将分为stdout和stderr。 有没有最佳实践如何解析输出? 我想以“漂亮的方式”呈现服务器发生的事情。 例如:
stdout
stderr
新用户已创建:User1
或
无法创建新用户:User1。因为:XXX
我对如何解析木偶代理的输出没有任何想法。 有什么想法吗?
谢谢!