From ad27f5dac1870369abe10e88fbb034ffa391f12c Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Thu, 24 Jan 2013 13:18:39 -0200 Subject: Lots of subsystem refactoring; minor node changes --- manifests/subsystems/motd.pp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'manifests/subsystems/motd.pp') 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": -- cgit v1.2.3