2012-03-27 04:07:04 +02:00
|
|
|
#!/usr/bin/env python
|
2012-02-23 20:56:14 +01:00
|
|
|
|
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-03-03 03:11:43 +01:00
|
|
|
########################################################
|
|
|
|
|
2012-02-28 10:00:31 +01:00
|
|
|
import sys
|
2012-02-25 00:13:11 +01:00
|
|
|
import getpass
|
2012-03-18 22:41:44 +01:00
|
|
|
|
2012-05-02 14:03:40 +02:00
|
|
|
from ansible.runner import Runner
|
2012-02-24 05:26:16 +01:00
|
|
|
import ansible.constants as C
|
2012-03-18 22:41:44 +01:00
|
|
|
from ansible import utils
|
|
|
|
from ansible import errors
|
2012-03-26 01:05:27 +02:00
|
|
|
from ansible import callbacks
|
2012-04-21 17:46:32 +02:00
|
|
|
from ansible import inventory
|
2012-02-23 20:56:14 +01:00
|
|
|
|
2012-03-03 03:11:43 +01:00
|
|
|
########################################################
|
|
|
|
|
2012-02-23 20:56:14 +01:00
|
|
|
class Cli(object):
|
2012-03-03 03:11:43 +01:00
|
|
|
''' code behind bin/ansible '''
|
2012-08-07 02:07:02 +02:00
|
|
|
|
|
|
|
# ----------------------------------------------
|
2012-02-23 20:56:14 +01:00
|
|
|
|
|
|
|
def __init__(self):
|
2012-03-26 01:05:27 +02:00
|
|
|
self.stats = callbacks.AggregateStats()
|
2012-03-27 03:17:11 +02:00
|
|
|
self.callbacks = callbacks.CliRunnerCallbacks()
|
2012-02-23 20:56:14 +01:00
|
|
|
|
2012-08-07 02:07:02 +02:00
|
|
|
# ----------------------------------------------
|
2012-03-03 03:08:48 +01:00
|
|
|
|
|
|
|
def parse(self):
|
2012-03-03 03:11:43 +01:00
|
|
|
''' create an options parser for bin/ansible '''
|
2012-08-07 02:07:02 +02:00
|
|
|
|
2012-08-11 20:05:24 +02:00
|
|
|
parser = utils.base_parser(constants=C, runas_opts=True, subset_opts=True, async_opts=True,
|
2012-04-12 20:18:35 +02:00
|
|
|
output_opts=True, connect_opts=True, usage='%prog <host-pattern> [options]')
|
2012-04-10 19:51:58 +02:00
|
|
|
parser.add_option('-a', '--args', dest='module_args',
|
|
|
|
help="module arguments", default=C.DEFAULT_MODULE_ARGS)
|
|
|
|
parser.add_option('-m', '--module-name', dest='module_name',
|
2012-08-07 02:07:02 +02:00
|
|
|
help="module name to execute (default=%s)" % C.DEFAULT_MODULE_NAME,
|
2012-04-13 03:30:49 +02:00
|
|
|
default=C.DEFAULT_MODULE_NAME)
|
2012-02-23 20:56:14 +01:00
|
|
|
options, args = parser.parse_args()
|
2012-08-07 02:07:02 +02:00
|
|
|
self.callbacks.options = options
|
2012-03-27 03:17:11 +02: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-08-07 02:07:02 +02:00
|
|
|
return (options, args)
|
|
|
|
|
|
|
|
# ----------------------------------------------
|
|
|
|
|
2012-03-03 03:08:48 +01:00
|
|
|
def run(self, options, args):
|
2012-03-03 03:11:43 +01:00
|
|
|
''' use Runner lib to do SSH things '''
|
2012-02-23 22:07:10 +01:00
|
|
|
|
2012-03-03 03:08:48 +01:00
|
|
|
pattern = args[0]
|
2012-04-21 17:46:32 +02:00
|
|
|
|
|
|
|
inventory_manager = inventory.Inventory(options.inventory)
|
|
|
|
hosts = inventory_manager.list_hosts(pattern)
|
|
|
|
if len(hosts) == 0:
|
2012-05-07 17:37:50 +02:00
|
|
|
print >>sys.stderr, "No hosts matched"
|
|
|
|
sys.exit(1)
|
2012-08-07 02:07:02 +02:00
|
|
|
|
2012-02-25 00:13:11 +01:00
|
|
|
sshpass = None
|
2012-04-14 01:33:19 +02:00
|
|
|
sudopass = 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-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
|
2012-05-07 00:24:04 +02:00
|
|
|
if options.sudo_user:
|
2012-05-07 17:37:50 +02:00
|
|
|
options.sudo = True
|
|
|
|
options.sudo_user = options.sudo_user or C.DEFAULT_SUDO_USER
|
2012-03-27 03:17:11 +02:00
|
|
|
if options.tree:
|
|
|
|
utils.prepare_writeable_dir(options.tree)
|
2012-02-25 00:13:11 +01:00
|
|
|
|
2012-05-02 14:03:40 +02:00
|
|
|
runner = Runner(
|
2012-03-27 03:17:11 +02:00
|
|
|
module_name=options.module_name, module_path=options.module_path,
|
2012-03-31 04:47:58 +02:00
|
|
|
module_args=options.module_args,
|
2012-03-27 03:17:11 +02:00
|
|
|
remote_user=options.remote_user, remote_pass=sshpass,
|
2012-08-07 02:07:02 +02:00
|
|
|
inventory=inventory_manager, timeout=options.timeout,
|
2012-05-14 22:22:05 +02:00
|
|
|
private_key_file=options.private_key_file,
|
2012-08-07 02:07:02 +02:00
|
|
|
forks=options.forks,
|
|
|
|
pattern=pattern,
|
|
|
|
callbacks=self.callbacks, sudo=options.sudo,
|
2012-05-04 01:08:36 +02:00
|
|
|
sudo_pass=sudopass,sudo_user=options.sudo_user,
|
2012-08-11 20:05:24 +02:00
|
|
|
transport=options.connection, subset=options.subset
|
2012-03-12 01:54:54 +01:00
|
|
|
)
|
|
|
|
|
2012-04-26 20:35:19 +02:00
|
|
|
if options.seconds:
|
|
|
|
print "background launch...\n\n"
|
2012-05-26 01:18:02 +02:00
|
|
|
results, poller = runner.run_async(options.seconds)
|
2012-04-26 20:35:19 +02:00
|
|
|
results = self.poll_while_needed(poller, options)
|
|
|
|
else:
|
|
|
|
results = runner.run()
|
2012-03-12 01:54:54 +01:00
|
|
|
|
2012-04-26 20:35:19 +02:00
|
|
|
return (runner, results)
|
2012-02-23 20:56:14 +01:00
|
|
|
|
2012-08-07 02:07:02 +02:00
|
|
|
# ----------------------------------------------
|
2012-02-28 09:54:41 +01:00
|
|
|
|
2012-04-26 20:35:19 +02:00
|
|
|
def poll_while_needed(self, poller, options):
|
2012-03-03 03:11:43 +01:00
|
|
|
''' summarize results from Runner '''
|
2012-02-28 09:54:41 +01:00
|
|
|
|
2012-03-12 01:54:54 +01:00
|
|
|
# BACKGROUND POLL LOGIC when -B and -P are specified
|
|
|
|
if options.seconds and options.poll_interval > 0:
|
2012-04-26 20:35:19 +02:00
|
|
|
poller.wait(options.seconds, options.poll_interval)
|
|
|
|
|
|
|
|
return poller.results
|
|
|
|
|
2012-02-28 09:54:41 +01:00
|
|
|
|
2012-03-03 03:11:43 +01:00
|
|
|
########################################################
|
|
|
|
|
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()
|
2012-03-13 04:11:54 +01:00
|
|
|
try:
|
|
|
|
(runner, results) = cli.run(options, args)
|
2012-03-29 20:19:09 +02:00
|
|
|
except errors.AnsibleError, e:
|
2012-03-13 04:11:54 +01:00
|
|
|
# Generic handler for ansible specific errors
|
2012-03-14 01:59:05 +01:00
|
|
|
print "ERROR: %s" % str(e)
|
2012-03-13 04:11:54 +01:00
|
|
|
sys.exit(1)
|
2012-03-14 01:59:05 +01:00
|
|
|
|