Turn off some of the additional debug syslogging
This commit is contained in:
parent
346f8ffe0e
commit
0fc939d33f
1 changed files with 3 additions and 1 deletions
4
user
4
user
|
@ -220,7 +220,9 @@ class User(object):
|
||||||
self.ssh_file = module.params['ssh_key_file']
|
self.ssh_file = module.params['ssh_key_file']
|
||||||
else:
|
else:
|
||||||
self.ssh_file = os.path.join('.ssh', 'id_%s' % self.ssh_type)
|
self.ssh_file = os.path.join('.ssh', 'id_%s' % self.ssh_type)
|
||||||
self.syslogging = True
|
|
||||||
|
# select whether we dump additional debug info through syslog
|
||||||
|
self.syslogging = False
|
||||||
|
|
||||||
def execute_command(self,cmd):
|
def execute_command(self,cmd):
|
||||||
if self.syslogging:
|
if self.syslogging:
|
||||||
|
|
Loading…
Reference in a new issue