2012-03-26 22:07:04 -04:00
|
|
|
#!/usr/bin/env python
|
2012-02-28 00:45:37 -05: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-02 21:20:37 -05:00
|
|
|
|
|
|
|
#######################################################
|
2012-02-28 00:45:37 -05:00
|
|
|
|
|
|
|
import sys
|
2012-03-02 22:54:25 -05:00
|
|
|
import getpass
|
2012-02-28 00:45:37 -05:00
|
|
|
|
2012-03-18 17:32:36 -04:00
|
|
|
import ansible.playbook
|
|
|
|
import ansible.constants as C
|
|
|
|
from ansible import errors
|
2012-03-21 22:18:57 -04:00
|
|
|
from ansible import callbacks
|
2012-04-05 17:06:23 -04:00
|
|
|
from ansible import utils
|
2012-03-13 21:30:34 -04:00
|
|
|
|
2012-02-28 00:45:37 -05:00
|
|
|
def main(args):
|
2012-03-02 21:20:37 -05:00
|
|
|
''' run ansible-playbook operations '''
|
|
|
|
|
|
|
|
# create parser for CLI options
|
2012-04-10 21:13:01 -04:00
|
|
|
usage = "%prog playbook.yml"
|
2012-04-16 22:15:55 -04:00
|
|
|
parser = utils.base_parser(constants=C, usage=usage, connect_opts=True, runas_opts=True)
|
2012-04-10 13:51:58 -04:00
|
|
|
parser.add_option('-O', '--override-hosts', dest="override_hosts", default=None,
|
|
|
|
help="run playbook against these hosts regardless of inventory settings")
|
|
|
|
|
2012-02-28 00:45:37 -05:00
|
|
|
options, args = parser.parse_args(args)
|
|
|
|
|
|
|
|
if len(args) == 0:
|
2012-04-10 15:17:25 +00:00
|
|
|
parser.print_help(file=sys.stderr)
|
2012-03-02 22:54:25 -05:00
|
|
|
return 1
|
|
|
|
|
|
|
|
sshpass = None
|
2012-04-13 19:06:11 -04:00
|
|
|
sudopass = None
|
2012-03-02 22:54:25 -05:00
|
|
|
if options.ask_pass:
|
|
|
|
sshpass = getpass.getpass(prompt="SSH password: ")
|
2012-04-13 19:06:11 -04:00
|
|
|
if options.ask_sudo_pass:
|
|
|
|
sudopass = getpass.getpass(prompt="sudo password: ")
|
2012-03-24 16:19:38 -04:00
|
|
|
override_hosts = None
|
|
|
|
if options.override_hosts:
|
|
|
|
override_hosts = options.override_hosts.split(",")
|
2012-02-28 00:45:37 -05:00
|
|
|
|
2012-03-02 21:20:37 -05:00
|
|
|
# run all playbooks specified on the command line
|
2012-02-28 00:45:37 -05:00
|
|
|
for playbook in args:
|
2012-03-25 19:05:27 -04:00
|
|
|
|
|
|
|
stats = callbacks.AggregateStats()
|
|
|
|
playbook_cb = callbacks.PlaybookCallbacks()
|
|
|
|
runner_cb = callbacks.PlaybookRunnerCallbacks(stats)
|
|
|
|
|
2012-02-28 00:45:37 -05:00
|
|
|
pb = ansible.playbook.PlayBook(
|
2012-04-16 22:15:55 -04: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-13 19:33:19 -04:00
|
|
|
remote_pass=sshpass,
|
2012-04-16 22:15:55 -04:00
|
|
|
callbacks=playbook_cb,
|
|
|
|
runner_callbacks=runner_cb,
|
|
|
|
stats=stats,
|
|
|
|
timeout=options.timeout,
|
|
|
|
transport=options.connection,
|
|
|
|
sudo=options.sudo,
|
2012-04-13 19:06:11 -04:00
|
|
|
sudo_pass=sudopass
|
2012-02-28 00:45:37 -05:00
|
|
|
)
|
2012-03-12 23:11:54 -04:00
|
|
|
try:
|
2012-03-25 19:05:27 -04:00
|
|
|
|
2012-03-26 21:23:28 -04:00
|
|
|
pb.run()
|
2012-03-25 19:05:27 -04: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-20 22:29:21 -04:00
|
|
|
except errors.AnsibleError, e:
|
2012-03-13 19:19:54 -04:00
|
|
|
print >>sys.stderr, "ERROR: %s" % e
|
2012-03-12 23:11:54 -04:00
|
|
|
return 1
|
2012-02-28 00:45:37 -05:00
|
|
|
|
|
|
|
return 0
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2012-03-20 22:29:21 -04:00
|
|
|
try:
|
|
|
|
sys.exit(main(sys.argv[1:]))
|
|
|
|
except errors.AnsibleError, e:
|
|
|
|
print >>sys.stderr, "ERROR: %s" % e
|
|
|
|
sys.exit(1)
|
|
|
|
|