diff options
Diffstat (limited to 'ansible_collections/community/general/plugins/connection/funcd.py')
-rw-r--r-- | ansible_collections/community/general/plugins/connection/funcd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ansible_collections/community/general/plugins/connection/funcd.py b/ansible_collections/community/general/plugins/connection/funcd.py index 9f37f791d..219a8cccd 100644 --- a/ansible_collections/community/general/plugins/connection/funcd.py +++ b/ansible_collections/community/general/plugins/connection/funcd.py @@ -70,7 +70,7 @@ class Connection(ConnectionBase): if in_data: raise AnsibleError("Internal Error: this module does not support optimized module pipelining") - # totally ignores privlege escalation + # totally ignores privilege escalation display.vvv("EXEC %s" % cmd, host=self.host) p = self.client.command.run(cmd)[self.host] return p[0], p[1], p[2] |