15 lines
425 B
Puppet
15 lines
425 B
Puppet
## puppet_cd::main::config.pp
|
|
# Module name: puppet_cd
|
|
# Author: Arne Teuke (arne_teuke@confdroid)
|
|
# @summary Class manages parameters for the puppet_cd module.
|
|
###############################################################################
|
|
class puppet_cd::main::config (
|
|
|
|
) inherits puppet_cd::params {
|
|
|
|
# test
|
|
if $facts['fqdn'] == $server_facts['servername'] {
|
|
notify { "This is the Puppet master node": }
|
|
}
|
|
}
|