Details
-
Improvement
-
Status: Resolved
-
Normal
-
Resolution: Fixed
-
None
-
None
-
-
Coremunity
-
Platform Core KANBAN
-
Bug Fix
-
User providers will not output exec command lines with passwords during debugging level logging.
-
Needs Assessment
Description
Reproduction steps:
$ cat foo.pp
|
class foo { |
user {'foo': |
ensure => present,
|
password => Sensitive("foo") |
}
|
}
|
|
include foo
|
|
puppet apply foo.pp --debug
|
Info: Applying configuration version '8ef5cbfc620ff86bc1c8c02a56c5dc16d3630db4' |
Debug: Executing: '/sbin/useradd -p foo -M foo' |

|