mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Remove "import *"'s from bin/ansible-playbook code so pyflakes will be usable.
This commit is contained in:
parent
9e07b24239
commit
a4b8cdf8b3
1 changed files with 9 additions and 8 deletions
|
@ -19,13 +19,14 @@
|
||||||
#######################################################
|
#######################################################
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
import ansible.playbook
|
|
||||||
import ansible.constants as C
|
|
||||||
from ansible.utils import *
|
|
||||||
from ansible.errors import *
|
|
||||||
import getpass
|
import getpass
|
||||||
from optparse import OptionParser
|
from optparse import OptionParser
|
||||||
|
|
||||||
|
import ansible.playbook
|
||||||
|
import ansible.constants as C
|
||||||
|
from ansible import errors
|
||||||
|
from ansible import utils
|
||||||
|
|
||||||
#######################################################
|
#######################################################
|
||||||
|
|
||||||
class PlaybookCallbacks(object):
|
class PlaybookCallbacks(object):
|
||||||
|
@ -40,13 +41,13 @@ class PlaybookCallbacks(object):
|
||||||
print "\n"
|
print "\n"
|
||||||
|
|
||||||
def on_task_start(self, name, is_conditional):
|
def on_task_start(self, name, is_conditional):
|
||||||
print task_start_msg(name, is_conditional)
|
print utils.task_start_msg(name, is_conditional)
|
||||||
|
|
||||||
def on_unreachable(self, host, msg):
|
def on_unreachable(self, host, msg):
|
||||||
print "unreachable: [%s] => %s" % (host, msg)
|
print "unreachable: [%s] => %s" % (host, msg)
|
||||||
|
|
||||||
def on_failed(self, host, results):
|
def on_failed(self, host, results):
|
||||||
print "failed: [%s] => %s\n" % (host, smjson(results))
|
print "failed: [%s] => %s\n" % (host, utils.smjson(results))
|
||||||
|
|
||||||
def on_ok(self, host):
|
def on_ok(self, host):
|
||||||
print "ok: [%s]\n" % (host)
|
print "ok: [%s]\n" % (host)
|
||||||
|
@ -58,7 +59,7 @@ class PlaybookCallbacks(object):
|
||||||
print msg
|
print msg
|
||||||
|
|
||||||
def on_async_poll(self, jid, host, clock, host_result):
|
def on_async_poll(self, jid, host, clock, host_result):
|
||||||
print async_poll_status(jid, host, clock, host_result)
|
print utils.async_poll_status(jid, host, clock, host_result)
|
||||||
|
|
||||||
def on_dark_host(self, host, msg):
|
def on_dark_host(self, host, msg):
|
||||||
print "exception: [%s] => %s" % (host, msg)
|
print "exception: [%s] => %s" % (host, msg)
|
||||||
|
@ -105,7 +106,7 @@ def main(args):
|
||||||
)
|
)
|
||||||
try:
|
try:
|
||||||
pb.run()
|
pb.run()
|
||||||
except AnsibleError as e:
|
except errors.AnsibleError as e:
|
||||||
print >>sys.stderr, "ERROR: %s" % e
|
print >>sys.stderr, "ERROR: %s" % e
|
||||||
return 1
|
return 1
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue