Files
confdroid_puppet/manifests/main/config.pp

15 lines
425 B
ObjectPascal
Raw Normal View History

2025-02-25 18:09:01 +01:00
## 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 {
2025-02-25 23:32:54 +01:00
# test
if $facts['fqdn'] == $server_facts['servername'] {
notify { "This is the Puppet master node": }
}
2025-02-25 18:09:01 +01:00
}