mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Do not leak the solaris root password in the log
This commit is contained in:
parent
60d84aca07
commit
6769bbf1a6
1 changed files with 1 additions and 1 deletions
|
@ -422,7 +422,7 @@ def main():
|
|||
state = dict(default='present', choices=['running', 'started', 'present', 'installed', 'stopped', 'absent', 'configured', 'detached', 'attached']),
|
||||
path = dict(defalt=None),
|
||||
sparse = dict(default=False, type='bool'),
|
||||
root_password = dict(default=None),
|
||||
root_password = dict(default=None, no_log=True),
|
||||
timeout = dict(default=600, type='int'),
|
||||
config = dict(default=''),
|
||||
create_options = dict(default=''),
|
||||
|
|
Loading…
Reference in a new issue