Commit 61379a60 by Toshio Kuratomi

Merge pull request #10717 from mscherer/fix_connexion_info

Fix various pylint issues ( missing import and wrong variable names )
parents 9097274f 1acd56a9
...@@ -25,7 +25,7 @@ import random ...@@ -25,7 +25,7 @@ import random
from ansible import constants as C from ansible import constants as C
from ansible.template import Templar from ansible.template import Templar
from ansible.utils.boolean import boolean from ansible.utils.boolean import boolean
from ansible.errors import AnsibleError
__all__ = ['ConnectionInformation'] __all__ = ['ConnectionInformation']
...@@ -230,7 +230,7 @@ class ConnectionInformation: ...@@ -230,7 +230,7 @@ class ConnectionInformation:
elif self.become_method == 'pbrun': elif self.become_method == 'pbrun':
exe = become_settings.get('pbrun_exe', 'pbrun') exe = become_settings.get('pbrun_exe', 'pbrun')
flags = become_settings.get('pbrun_flags', '') flags = become_settings.get('pbrun_flags', '')
becomecmd = '%s -b -l %s -u %s "%s"' % (exe, flags, user, success_cmd) becomecmd = '%s -b -l %s -u %s "%s"' % (exe, flags, self.become_user, success_cmd)
elif self.become_method == 'pfexec': elif self.become_method == 'pfexec':
exe = become_settings.get('pfexec_exe', 'pbrun') exe = become_settings.get('pfexec_exe', 'pbrun')
...@@ -239,7 +239,7 @@ class ConnectionInformation: ...@@ -239,7 +239,7 @@ class ConnectionInformation:
becomecmd = '%s %s "%s"' % (exe, flags, success_cmd) becomecmd = '%s %s "%s"' % (exe, flags, success_cmd)
else: else:
raise errors.AnsibleError("Privilege escalation method not found: %s" % method) raise AnsibleError("Privilege escalation method not found: %s" % self.become_method)
return (('%s -c ' % executable) + pipes.quote(becomecmd), prompt, success_key) return (('%s -c ' % executable) + pipes.quote(becomecmd), prompt, success_key)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment