puppet-nslcd/manifests/config.pp
Maximilian Herrmann 1cbfad7c65 dont print config diff when writing new config file
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
2023-02-09 12:39:54 +01:00

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'),
}
}