mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-24 11:21:25 -07:00
renamed plugins to contrib (they are not really plugins) rewrote README.md to reflect new usage added new dir to setup.py so it gets copied with installation, in views of making using inventory scripts easier in teh future
87 lines
2.8 KiB
Python
87 lines
2.8 KiB
Python
|
|
# (C) 2012, Michael DeHaan, <michael.dehaan@gmail.com>
|
|
|
|
# This file is part of Ansible
|
|
#
|
|
# Ansible 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 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Ansible 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 Ansible. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import subprocess
|
|
import os
|
|
|
|
from ansible.plugins.callback import CallbackBase
|
|
|
|
FAILED_VOICE="Zarvox"
|
|
REGULAR_VOICE="Trinoids"
|
|
HAPPY_VOICE="Cellos"
|
|
LASER_VOICE="Princess"
|
|
SAY_CMD="/usr/bin/say"
|
|
|
|
class CallbackModule(CallbackBase):
|
|
"""
|
|
makes Ansible much more exciting on OS X.
|
|
"""
|
|
CALLBACK_VERSION = 2.0
|
|
CALLBACK_TYPE = 'notification'
|
|
|
|
def __init__(self, display):
|
|
|
|
super(CallbackModule, self).__init__(display)
|
|
|
|
# plugin disable itself if say is not present
|
|
# ansible will not call any callback if disabled is set to True
|
|
if not os.path.exists(SAY_CMD):
|
|
self.disabled = True
|
|
self._display.warning("%s does not exist, plugin %s disabled" % (SAY_CMD, os.path.basename(__file__)) )
|
|
|
|
def say(self, msg, voice):
|
|
subprocess.call([SAY_CMD, msg, "--voice=%s" % (voice)])
|
|
|
|
def runner_on_failed(self, host, res, ignore_errors=False):
|
|
self.say("Failure on host %s" % host, FAILED_VOICE)
|
|
|
|
def runner_on_ok(self, host, res):
|
|
self.say("pew", LASER_VOICE)
|
|
|
|
def runner_on_skipped(self, host, item=None):
|
|
self.say("pew", LASER_VOICE)
|
|
|
|
def runner_on_unreachable(self, host, res):
|
|
self.say("Failure on host %s" % host, FAILED_VOICE)
|
|
|
|
def runner_on_async_ok(self, host, res, jid):
|
|
self.say("pew", LASER_VOICE)
|
|
|
|
def runner_on_async_failed(self, host, res, jid):
|
|
self.say("Failure on host %s" % host, FAILED_VOICE)
|
|
|
|
def playbook_on_start(self):
|
|
self.say("Running Playbook", REGULAR_VOICE)
|
|
|
|
def playbook_on_notify(self, host, handler):
|
|
self.say("pew", LASER_VOICE)
|
|
|
|
def playbook_on_task_start(self, name, is_conditional):
|
|
if not is_conditional:
|
|
self.say("Starting task: %s" % name, REGULAR_VOICE)
|
|
else:
|
|
self.say("Notifying task: %s" % name, REGULAR_VOICE)
|
|
|
|
def playbook_on_setup(self):
|
|
self.say("Gathering facts", REGULAR_VOICE)
|
|
|
|
def playbook_on_play_start(self, name):
|
|
self.say("Starting play: %s" % name, HAPPY_VOICE)
|
|
|
|
def playbook_on_stats(self, stats):
|
|
self.say("Play complete", HAPPY_VOICE)
|