Fixing option order in connection info (v2)

pull/10860/head
James Cammarata 10 years ago
parent 2bf95aaa2d
commit 84fe6655d1

@ -65,14 +65,13 @@ class ConnectionInformation:
self.no_log = False
self.check_mode = False
if play:
self.set_play(play)
#TODO: just pull options setup to above?
# set options before play to allow play to override them
if options:
self.set_options(options)
if play:
self.set_play(play)
def __repr__(self):
value = "CONNECTION INFO:\n"
@ -136,8 +135,6 @@ class ConnectionInformation:
if options.check:
self.check_mode = boolean(options.check)
# get the tag info from options, converting a comma-separated list
# of values into a proper list if need be. We check to see if the
# options have the attribute, as it is not always added via the CLI

@ -0,0 +1,7 @@
- hosts: ubuntu1404
gather_facts: no
remote_user: testing
tasks:
- command: whoami
- apt: update_cache=yes
sudo: yes
Loading…
Cancel
Save