From 9d3c5251df377a1d63f2bd0774d79f1f5a229973 Mon Sep 17 00:00:00 2001 From: Harald Klein Date: Wed, 15 Feb 2017 07:03:45 -0500 Subject: [ansible] new plugin: collect ansible config and do a basic ping check Assisted by: Kyle Squizzato Fixes: #931 Signed-off-by: Harald Klein Signed-off-by: Bryn M. Reeves --- sos/plugins/ansible.py | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 sos/plugins/ansible.py 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 : -- cgit