aboutsummaryrefslogtreecommitdiff
path: root/manifests/subsystem/motd.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/subsystem/motd.pp')
-rw-r--r--manifests/subsystem/motd.pp19
1 files changed, 19 insertions, 0 deletions
diff --git a/manifests/subsystem/motd.pp b/manifests/subsystem/motd.pp
new file mode 100644
index 0000000..8561b38
--- /dev/null
+++ b/manifests/subsystem/motd.pp
@@ -0,0 +1,19 @@
+class nodo::subsystem::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",
+ }
+
+ file { "/etc/motd":
+ owner => "root",
+ group => "root",
+ ensure => "/var/run/motd",
+ require => File["/var/run/motd"],
+ }
+}