2012-02-23 20:56:14 +01:00
|
|
|
#!/usr/bin/python
|
|
|
|
|
2012-02-29 01:08:09 +01:00
|
|
|
# (c) 2012, Michael DeHaan <michael.dehaan@gmail.com>
|
2012-02-24 01:42:05 +01:00
|
|
|
#
|
2012-02-29 01:08:09 +01:00
|
|
|
# This file is part of Ansible
|
2012-02-24 01:42:05 +01:00
|
|
|
#
|
2012-02-29 01:08:09 +01:00
|
|
|
# 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.
|
2012-02-24 01:42:05 +01:00
|
|
|
#
|
2012-02-29 01:08:09 +01:00
|
|
|
# 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-02-24 01:42:05 +01:00
|
|
|
|
2012-02-29 18:30:02 +01:00
|
|
|
try:
|
|
|
|
import json
|
|
|
|
except ImportError:
|
|
|
|
import simplejson as json
|
2012-02-23 20:56:14 +01:00
|
|
|
from optparse import OptionParser
|
2012-02-28 10:00:31 +01:00
|
|
|
import sys
|
2012-02-23 20:56:14 +01:00
|
|
|
import os
|
2012-02-25 00:13:11 +01:00
|
|
|
import getpass
|
2012-02-25 05:35:09 +01:00
|
|
|
import shlex
|
2012-02-24 05:28:58 +01:00
|
|
|
import ansible.runner
|
2012-02-24 05:26:16 +01:00
|
|
|
import ansible.playbook
|
|
|
|
import ansible.constants as C
|
2012-02-28 10:20:25 +01:00
|
|
|
from optparse import OptionParser
|
2012-03-03 03:08:48 +01:00
|
|
|
from ansible.utils import *
|
2012-02-23 20:56:14 +01:00
|
|
|
|
|
|
|
class Cli(object):
|
2012-03-03 03:08:48 +01:00
|
|
|
|
|
|
|
# ----------------------------------------------
|
2012-02-23 20:56:14 +01:00
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
pass
|
|
|
|
|
2012-03-03 03:08:48 +01:00
|
|
|
# ----------------------------------------------
|
|
|
|
|
|
|
|
def parse(self):
|
|
|
|
|
2012-03-02 04:10:47 +01:00
|
|
|
parser = OptionParser(usage = 'ansible <host-pattern> [options]')
|
2012-03-02 03:18:32 +01:00
|
|
|
parser.add_option("-a", "--args", dest="module_args",
|
|
|
|
help="module arguments", default=C.DEFAULT_MODULE_ARGS)
|
2012-02-28 10:20:25 +01:00
|
|
|
parser.add_option('-f','--forks', dest='forks', default=C.DEFAULT_FORKS, type='int',
|
2012-03-02 04:10:47 +01:00
|
|
|
help='number of parallel processes to use')
|
|
|
|
parser.add_option("-i", "--inventory-file", dest="inventory",
|
|
|
|
help="inventory host file", default=C.DEFAULT_HOST_LIST)
|
2012-03-02 03:18:32 +01:00
|
|
|
parser.add_option("-k", "--ask-pass", default=False, action="store_true",
|
2012-03-02 04:10:47 +01:00
|
|
|
help="ask for SSH password")
|
|
|
|
parser.add_option("-M", "--module-path", dest="module_path",
|
2012-03-02 03:18:32 +01:00
|
|
|
help="path to module library", default=C.DEFAULT_MODULE_PATH)
|
2012-03-02 04:10:47 +01:00
|
|
|
parser.add_option("-m", "--module-name", dest="module_name",
|
|
|
|
help="module name to execute", default=C.DEFAULT_MODULE_NAME)
|
2012-02-28 09:54:41 +01:00
|
|
|
parser.add_option('-o', '--one-line', dest='one_line', action='store_true',
|
2012-03-02 04:10:47 +01:00
|
|
|
help="condense output")
|
2012-02-28 09:57:43 +01:00
|
|
|
parser.add_option('-t', '--tree', dest='tree', default=None,
|
2012-03-02 04:10:47 +01:00
|
|
|
help="log output to this directory")
|
2012-03-02 01:54:17 +01:00
|
|
|
parser.add_option('-T', '--timeout', default=C.DEFAULT_TIMEOUT, type='int',
|
2012-03-02 04:10:47 +01:00
|
|
|
dest='timeout', help="set the SSH timeout in seconds")
|
2012-03-02 03:18:32 +01:00
|
|
|
parser.add_option('-u', '--user', default=C.DEFAULT_REMOTE_USER,
|
2012-03-02 04:10:47 +01:00
|
|
|
dest='remote_user', help='connect as this user')
|
2012-02-23 20:56:14 +01:00
|
|
|
options, args = parser.parse_args()
|
2012-03-03 03:08:48 +01:00
|
|
|
|
2012-03-02 04:10:47 +01:00
|
|
|
if len(args) == 0 or len(args) > 1:
|
|
|
|
parser.print_help()
|
2012-02-28 10:00:31 +01:00
|
|
|
sys.exit(1)
|
2012-03-03 03:08:48 +01:00
|
|
|
return (options, args)
|
|
|
|
|
|
|
|
# ----------------------------------------------
|
|
|
|
|
|
|
|
def run(self, options, args):
|
2012-02-23 22:07:10 +01:00
|
|
|
|
2012-03-03 03:08:48 +01:00
|
|
|
pattern = args[0]
|
2012-02-25 00:13:11 +01:00
|
|
|
sshpass = None
|
2012-02-28 09:54:41 +01:00
|
|
|
if options.ask_pass:
|
2012-02-25 00:13:11 +01:00
|
|
|
sshpass = getpass.getpass(prompt="SSH password: ")
|
|
|
|
|
2012-03-03 03:08:48 +01:00
|
|
|
return ansible.runner.Runner(
|
2012-02-28 07:33:22 +01:00
|
|
|
module_name=options.module_name,
|
|
|
|
module_path=options.module_path,
|
|
|
|
module_args=shlex.split(options.module_args),
|
|
|
|
remote_user=options.remote_user,
|
|
|
|
remote_pass=sshpass,
|
2012-03-02 03:18:32 +01:00
|
|
|
host_list=options.inventory,
|
2012-03-02 01:54:17 +01:00
|
|
|
timeout=options.timeout,
|
2012-02-28 07:33:22 +01:00
|
|
|
forks=options.forks,
|
2012-03-02 04:10:47 +01:00
|
|
|
pattern=pattern,
|
2012-02-28 07:33:22 +01:00
|
|
|
verbose=True,
|
2012-03-03 03:08:48 +01:00
|
|
|
).run()
|
2012-02-23 20:56:14 +01:00
|
|
|
|
2012-03-03 03:08:48 +01:00
|
|
|
# ----------------------------------------------
|
2012-02-28 09:54:41 +01:00
|
|
|
|
2012-03-03 03:08:48 +01:00
|
|
|
def output(self, results, options, args):
|
2012-02-28 09:54:41 +01:00
|
|
|
|
2012-03-02 04:10:47 +01:00
|
|
|
if results is None:
|
2012-03-03 03:08:48 +01:00
|
|
|
exit("No hosts matched")
|
2012-02-28 09:57:43 +01:00
|
|
|
if options.tree:
|
2012-03-03 03:08:48 +01:00
|
|
|
prepare_writeable_dir(options.tree)
|
|
|
|
|
|
|
|
buf = ''
|
|
|
|
for hostname in contacted_hosts(results):
|
|
|
|
msg = host_report_msg(
|
|
|
|
hostname,
|
|
|
|
options.module_name,
|
|
|
|
contacted_host_result(results, hostname),
|
|
|
|
options.one_line
|
|
|
|
)
|
|
|
|
if options.tree:
|
|
|
|
write_tree_file(hostname, msg)
|
|
|
|
buf += msg
|
2012-03-02 04:10:47 +01:00
|
|
|
|
2012-03-03 03:08:48 +01:00
|
|
|
if has_dark_hosts(results):
|
|
|
|
buf += dark_hosts_msg(results)
|
|
|
|
|
|
|
|
print buf
|
2012-02-28 09:54:41 +01:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
cli = Cli()
|
2012-03-03 03:08:48 +01:00
|
|
|
(options, args) = cli.parse()
|
|
|
|
results = cli.run(options, args)
|
|
|
|
cli.output(results, options, args)
|
2012-02-28 09:54:41 +01:00
|
|
|
|
2012-03-03 03:08:48 +01:00
|
|
|
|