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
|
|
|
|
|
|
|
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-03-14 02:30:34 +01:00
|
|
|
|
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-04-17 04:15:55 +02:00
|
|
|
parser = utils.base_parser(constants=C, usage=usage, connect_opts=True, runas_opts=True)
|
2012-04-10 19:51:58 +02:00
|
|
|
parser.add_option('-O', '--override-hosts', dest="override_hosts", default=None,
|
|
|
|
help="run playbook against these hosts regardless of inventory settings")
|
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-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-03-24 21:19:38 +01:00
|
|
|
override_hosts = None
|
|
|
|
if options.override_hosts:
|
|
|
|
override_hosts = options.override_hosts.split(",")
|
2012-04-27 01:56:10 +02:00
|
|
|
extra_vars = utils.parse_kv(options.extra_vars)
|
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()
|
|
|
|
playbook_cb = callbacks.PlaybookCallbacks()
|
|
|
|
runner_cb = callbacks.PlaybookRunnerCallbacks(stats)
|
|
|
|
|
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,
|
|
|
|
host_list=options.inventory,
|
|
|
|
override_hosts=override_hosts,
|
|
|
|
forks=options.forks,
|
|
|
|
debug=options.debug,
|
|
|
|
remote_user=options.remote_user,
|
2012-04-14 01:33:19 +02:00
|
|
|
remote_pass=sshpass,
|
2012-04-17 04:15:55 +02:00
|
|
|
callbacks=playbook_cb,
|
|
|
|
runner_callbacks=runner_cb,
|
|
|
|
stats=stats,
|
|
|
|
timeout=options.timeout,
|
|
|
|
transport=options.connection,
|
|
|
|
sudo=options.sudo,
|
2012-04-27 01:56:10 +02:00
|
|
|
sudo_pass=sudopass,
|
|
|
|
extra_vars=extra_vars
|
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())
|
|
|
|
print "\n\nPLAY RECAP **********************\n\n"
|
|
|
|
for h in hosts:
|
|
|
|
t = pb.stats.summarize(h)
|
|
|
|
print "%-30s : ok=%4s changed=%4s unreachable=%4s failed=%4s " % (h,
|
|
|
|
t['ok'], t['changed'], t['unreachable'], t['failures']
|
|
|
|
)
|
|
|
|
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)
|
|
|
|
|