aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Klein <hari@vt100.at>2017-02-15 07:03:45 -0500
committerBryn M. Reeves <bmr@redhat.com>2018-03-13 13:14:36 +0000
commit9d3c5251df377a1d63f2bd0774d79f1f5a229973 (patch)
tree0a88624a02a9d30aac9548b9b40ff1ddcb1ace15
parentcfbf10f8701070fba5d8a58b87d59b907e1d9743 (diff)
downloadsos-9d3c5251df377a1d63f2bd0774d79f1f5a229973.tar.gz
[ansible] new plugin: collect ansible config and do a basic ping check
Assisted by: Kyle Squizzato <ksquizza@redhat.com> Fixes: #931 Signed-off-by: Harald Klein <hari@vt100.at> Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r--sos/plugins/ansible.py38
1 files changed, 38 insertions, 0 deletions
diff --git a/sos/plugins/ansible.py b/sos/plugins/ansible.py
new file mode 100644
index 00000000..2b82d5fb
--- /dev/null
+++ b/sos/plugins/ansible.py
@@ -0,0 +1,38 @@
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+from sos.plugins import Plugin, RedHatPlugin, UbuntuPlugin
+
+
+class Ansible(Plugin, RedHatPlugin, UbuntuPlugin):
+ """Ansible configuration management
+ """
+
+ plugin_name = 'ansible'
+ profiles = ('system',)
+
+ packages = (
+ 'ansible',
+ 'ansible1.9'
+ )
+
+ def setup(self):
+ self.add_copy_spec("/etc/ansible/")
+
+ self.add_cmd_output([
+ "ansible all -m ping -vvvv",
+ "ansible --version"
+ ])
+
+# vim: set et ts=4 sw=4 :