Add -i, -k, and -M to ansible-playbook CLI to match options in /usr/bin/ansible
This commit is contained in:
parent
e4304a0ac5
commit
cbfabcd0fb
3 changed files with 20 additions and 8 deletions
|
@ -21,6 +21,7 @@
|
||||||
import sys
|
import sys
|
||||||
import ansible.playbook
|
import ansible.playbook
|
||||||
import ansible.constants as C
|
import ansible.constants as C
|
||||||
|
import getpass
|
||||||
from optparse import OptionParser
|
from optparse import OptionParser
|
||||||
|
|
||||||
#######################################################
|
#######################################################
|
||||||
|
@ -33,21 +34,32 @@ def main(args):
|
||||||
parser.usage = "ans-playbook playbook.yml ..."
|
parser.usage = "ans-playbook playbook.yml ..."
|
||||||
parser.add_option('-f','--forks', dest='forks', default=C.DEFAULT_FORKS, type='int',
|
parser.add_option('-f','--forks', dest='forks', default=C.DEFAULT_FORKS, type='int',
|
||||||
help='set the number of forks to start up')
|
help='set the number of forks to start up')
|
||||||
parser.add_option("-m", "--module-path", dest="module_path",
|
parser.add_option("-i", "--inventory-file", dest="inventory",
|
||||||
|
help="inventory host file", default=C.DEFAULT_HOST_LIST)
|
||||||
|
parser.add_option("-k", "--ask-pass", default=False, action="store_true",
|
||||||
|
help="ask for SSH password")
|
||||||
|
parser.add_option("-M", "--module-path", dest="module_path",
|
||||||
help="path to module library", default=C.DEFAULT_MODULE_PATH)
|
help="path to module library", default=C.DEFAULT_MODULE_PATH)
|
||||||
|
|
||||||
options, args = parser.parse_args(args)
|
options, args = parser.parse_args(args)
|
||||||
|
|
||||||
if len(args) == 0:
|
if len(args) == 0:
|
||||||
print >> sys.stderr, "playbook path is a required argument"
|
print >> sys.stderr, "playbook path is a required argument"
|
||||||
return 1
|
return 1
|
||||||
|
|
||||||
|
sshpass = None
|
||||||
|
if options.ask_pass:
|
||||||
|
sshpass = getpass.getpass(prompt="SSH password: ")
|
||||||
|
|
||||||
# run all playbooks specified on the command line
|
# run all playbooks specified on the command line
|
||||||
for playbook in args:
|
for playbook in args:
|
||||||
pb = ansible.playbook.PlayBook(
|
pb = ansible.playbook.PlayBook(
|
||||||
playbook=playbook,
|
playbook=playbook,
|
||||||
|
host_list=options.inventory,
|
||||||
module_path=options.module_path,
|
module_path=options.module_path,
|
||||||
forks=options.forks,
|
forks=options.forks,
|
||||||
verbose=True
|
verbose=True,
|
||||||
|
remote_pass=sshpass,
|
||||||
)
|
)
|
||||||
pb.run()
|
pb.run()
|
||||||
|
|
||||||
|
|
|
@ -242,8 +242,7 @@ class PlayBook(object):
|
||||||
handlers = pg['handlers']
|
handlers = pg['handlers']
|
||||||
user = pg.get('user', C.DEFAULT_REMOTE_USER)
|
user = pg.get('user', C.DEFAULT_REMOTE_USER)
|
||||||
|
|
||||||
host_file = pg.get('inventory', '/etc/ansible/hosts')
|
self.host_list, groups = ansible.runner.Runner.parse_hosts(self.host_list)
|
||||||
self.host_list, groups = ansible.runner.Runner.parse_hosts(host_file)
|
|
||||||
|
|
||||||
if self.verbose:
|
if self.verbose:
|
||||||
print "PLAY [%s] ****************************\n" % pattern
|
print "PLAY [%s] ****************************\n" % pattern
|
||||||
|
|
|
@ -272,10 +272,11 @@ class Runner(object):
|
||||||
# module, call the appropriate executor function
|
# module, call the appropriate executor function
|
||||||
|
|
||||||
ok, conn = self._connect(host)
|
ok, conn = self._connect(host)
|
||||||
|
if not ok:
|
||||||
|
return [ host, False, conn ]
|
||||||
|
|
||||||
tmp = self._get_tmp_path(conn)
|
tmp = self._get_tmp_path(conn)
|
||||||
result = None
|
result = None
|
||||||
if not ok:
|
|
||||||
result = [ host, False, conn ]
|
|
||||||
if self.module_name not in [ 'copy', 'template' ]:
|
if self.module_name not in [ 'copy', 'template' ]:
|
||||||
result = self._execute_normal_module(conn, host, tmp)
|
result = self._execute_normal_module(conn, host, tmp)
|
||||||
elif self.module_name == 'copy':
|
elif self.module_name == 'copy':
|
||||||
|
|
Loading…
Reference in a new issue