1cbfad7c65
especially when using bindpw this should not be printed in plaintext also when bindpw will printed in plaintext, this will be stored plaintext in the report
18 lines
369 B
Puppet
18 lines
369 B
Puppet
# == Class: nslcd::config
|
|
#
|
|
# Manages the nslcd server configuration file
|
|
#
|
|
class nslcd::config inherits nslcd
|
|
{
|
|
file
|
|
{
|
|
$nslcd::config:
|
|
ensure => file,
|
|
owner => $nslcd::config_user,
|
|
group => $nslcd::config_group,
|
|
mode => $nslcd::config_mode,
|
|
show_diff => false
|
|
content => template('nslcd/nslcd.erb'),
|
|
}
|
|
}
|