diff options
Diffstat (limited to 'manifests/subsystems/motd.pp')
-rw-r--r-- | manifests/subsystems/motd.pp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/manifests/subsystems/motd.pp b/manifests/subsystems/motd.pp index c8029bf..f9ece2d 100644 --- a/manifests/subsystems/motd.pp +++ b/manifests/subsystems/motd.pp @@ -1,11 +1,13 @@ -class motd { +class motd( + $network_name = hiera('nodo::motd::network_name', 'Nodo') +) { # http://projects.reductivelabs.com/issues/1915 file { "/var/run/motd": owner => "root", group => "root", mode => 0644, ensure => file, - content => "This is $fqdn from the $network_name.\n", + content => "This is ${::fqdn} from the ${network_name}.\n", } file { "/etc/motd": |