2012-03-27 04:07:04 +02:00
|
|
|
#!/usr/bin/env python
|
2012-02-28 06:45:37 +01:00
|
|
|
# (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/>.
|
2012-03-03 03:20:37 +01:00
|
|
|
|
|
|
|
#######################################################
|
2012-02-28 06:45:37 +01:00
|
|
|
|
2012-07-24 14:39:45 +02:00
|
|
|
import os
|
2012-02-28 06:45:37 +01:00
|
|
|
import sys
|
2012-03-03 04:54:25 +01:00
|
|
|
import getpass
|
2012-02-28 06:45:37 +01:00
|
|
|
|
2012-03-18 22:32:36 +01:00
|
|
|
import ansible.playbook
|
|
|
|
import ansible.constants as C
|
|
|
|
from ansible import errors
|
2012-03-22 03:18:57 +01:00
|
|
|
from ansible import callbacks
|
2012-04-05 23:06:23 +02:00
|
|
|
from ansible import utils
|
2012-07-25 01:30:02 +02:00
|
|
|
from ansible.color import ANSIBLE_COLOR, stringc
|
2012-07-24 14:39:45 +02:00
|
|
|
|
|
|
|
def colorize(lead, num, color):
|
2012-07-25 01:30:02 +02:00
|
|
|
""" Print 'lead' = 'num' in 'color' """
|
2012-07-26 02:29:20 +02:00
|
|
|
if num != 0 and ANSIBLE_COLOR:
|
2012-07-24 14:39:45 +02:00
|
|
|
return "%s%s%-15s" % (stringc(lead, color), stringc("=", color), stringc(str(num), color))
|
|
|
|
else:
|
|
|
|
return "%s=%-4s" % (lead, str(num))
|
|
|
|
|
2012-07-25 01:30:02 +02:00
|
|
|
def hostcolor(host, stats):
|
2012-07-24 14:39:45 +02:00
|
|
|
if ANSIBLE_COLOR:
|
2012-07-25 01:30:02 +02:00
|
|
|
if stats['failures'] != 0 or stats['unreachable'] != 0:
|
2012-07-24 14:39:45 +02:00
|
|
|
return "%-41s" % stringc(host, 'red')
|
2012-07-25 01:30:02 +02:00
|
|
|
elif stats['changed'] != 0:
|
|
|
|
return "%-41s" % stringc(host, 'yellow')
|
|
|
|
else:
|
|
|
|
return "%-41s" % stringc(host, 'green')
|
2012-07-24 14:39:45 +02:00
|
|
|
return "%-30s" % host
|
|
|
|
|
|
|
|
|
2012-02-28 06:45:37 +01:00
|
|
|
def main(args):
|
2012-03-03 03:20:37 +01:00
|
|
|
''' run ansible-playbook operations '''
|
|
|
|
|
|
|
|
# create parser for CLI options
|
2012-04-11 03:13:01 +02:00
|
|
|
usage = "%prog playbook.yml"
|
2012-08-10 08:45:29 +02:00
|
|
|
parser = utils.base_parser(constants=C, usage=usage, connect_opts=True, runas_opts=True, subset_opts=True)
|
2012-04-27 01:56:10 +02:00
|
|
|
parser.add_option('-e', '--extra-vars', dest="extra_vars", default=None,
|
|
|
|
help="set additional key=value variables from the CLI")
|
2012-07-12 01:51:26 +02:00
|
|
|
parser.add_option('-t', '--tags', dest='tags', default='all',
|
|
|
|
help="only run plays and tasks tagged with these values")
|
2012-04-10 19:51:58 +02:00
|
|
|
|
2012-02-28 06:45:37 +01:00
|
|
|
options, args = parser.parse_args(args)
|
|
|
|
|
|
|
|
if len(args) == 0:
|
2012-04-10 17:17:25 +02:00
|
|
|
parser.print_help(file=sys.stderr)
|
2012-03-03 04:54:25 +01:00
|
|
|
return 1
|
|
|
|
|
|
|
|
sshpass = None
|
2012-04-14 01:06:11 +02:00
|
|
|
sudopass = None
|
2012-03-03 04:54:25 +01:00
|
|
|
if options.ask_pass:
|
|
|
|
sshpass = getpass.getpass(prompt="SSH password: ")
|
2012-04-14 01:06:11 +02:00
|
|
|
if options.ask_sudo_pass:
|
|
|
|
sudopass = getpass.getpass(prompt="sudo password: ")
|
2012-05-07 17:37:50 +02:00
|
|
|
options.sudo = True
|
|
|
|
if options.sudo_user:
|
|
|
|
options.sudo = True
|
|
|
|
options.sudo_user = options.sudo_user or C.DEFAULT_SUDO_USER
|
2012-04-27 01:56:10 +02:00
|
|
|
extra_vars = utils.parse_kv(options.extra_vars)
|
2012-07-12 01:51:26 +02:00
|
|
|
only_tags = options.tags.split(",")
|
2012-02-28 06:45:37 +01:00
|
|
|
|
2012-03-03 03:20:37 +01:00
|
|
|
# run all playbooks specified on the command line
|
2012-02-28 06:45:37 +01:00
|
|
|
for playbook in args:
|
2012-03-26 01:05:27 +02:00
|
|
|
|
|
|
|
stats = callbacks.AggregateStats()
|
2012-08-09 03:09:14 +02:00
|
|
|
playbook_cb = callbacks.PlaybookCallbacks(verbose=utils.VERBOSITY)
|
|
|
|
runner_cb = callbacks.PlaybookRunnerCallbacks(stats, verbose=utils.VERBOSITY)
|
2012-03-26 01:05:27 +02:00
|
|
|
|
2012-02-28 06:45:37 +01:00
|
|
|
pb = ansible.playbook.PlayBook(
|
2012-04-17 04:15:55 +02:00
|
|
|
playbook=playbook,
|
|
|
|
module_path=options.module_path,
|
2012-08-07 02:07:02 +02:00
|
|
|
host_list=options.inventory,
|
|
|
|
forks=options.forks,
|
2012-04-17 04:15:55 +02:00
|
|
|
remote_user=options.remote_user,
|
2012-08-07 02:07:02 +02:00
|
|
|
remote_pass=sshpass,
|
|
|
|
callbacks=playbook_cb,
|
|
|
|
runner_callbacks=runner_cb,
|
2012-04-17 04:15:55 +02:00
|
|
|
stats=stats,
|
2012-08-07 02:07:02 +02:00
|
|
|
timeout=options.timeout,
|
2012-04-17 04:15:55 +02:00
|
|
|
transport=options.connection,
|
|
|
|
sudo=options.sudo,
|
2012-05-07 17:37:50 +02:00
|
|
|
sudo_user=options.sudo_user,
|
2012-04-27 01:56:10 +02:00
|
|
|
sudo_pass=sudopass,
|
2012-05-14 22:22:05 +02:00
|
|
|
extra_vars=extra_vars,
|
2012-07-12 01:51:26 +02:00
|
|
|
private_key_file=options.private_key_file,
|
|
|
|
only_tags=only_tags,
|
2012-08-10 08:45:29 +02:00
|
|
|
subset=options.subset,
|
2012-02-28 06:45:37 +01:00
|
|
|
)
|
2012-03-13 04:11:54 +01:00
|
|
|
try:
|
2012-03-26 01:05:27 +02:00
|
|
|
|
2012-03-27 03:23:28 +02:00
|
|
|
pb.run()
|
2012-03-26 01:05:27 +02:00
|
|
|
hosts = sorted(pb.stats.processed.keys())
|
2012-05-26 17:52:01 +02:00
|
|
|
print callbacks.banner("PLAY RECAP")
|
2012-03-26 01:05:27 +02:00
|
|
|
for h in hosts:
|
|
|
|
t = pb.stats.summarize(h)
|
2012-07-24 14:39:45 +02:00
|
|
|
print "%-30s : %s %s %s %s " % (
|
|
|
|
hostcolor(h, t),
|
|
|
|
colorize('ok', t['ok'], 'green'),
|
|
|
|
colorize('changed', t['changed'], 'yellow'),
|
|
|
|
colorize('unreachable', t['unreachable'], 'red'),
|
|
|
|
colorize('failed', t['failures'], 'red'))
|
|
|
|
|
2012-03-26 01:05:27 +02:00
|
|
|
print "\n"
|
|
|
|
|
2012-03-21 03:29:21 +01:00
|
|
|
except errors.AnsibleError, e:
|
2012-03-14 00:19:54 +01:00
|
|
|
print >>sys.stderr, "ERROR: %s" % e
|
2012-03-13 04:11:54 +01:00
|
|
|
return 1
|
2012-02-28 06:45:37 +01:00
|
|
|
|
|
|
|
return 0
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2012-03-21 03:29:21 +01:00
|
|
|
try:
|
|
|
|
sys.exit(main(sys.argv[1:]))
|
|
|
|
except errors.AnsibleError, e:
|
|
|
|
print >>sys.stderr, "ERROR: %s" % e
|
|
|
|
sys.exit(1)
|
|
|
|
|