aboutsummaryrefslogtreecommitdiff
path: root/manifests/subsystems/motd.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2010-03-22 22:11:47 -0300
committerSilvio Rhatto <rhatto@riseup.net>2010-03-22 22:11:47 -0300
commit1b44048f33e795162212d2fdc77bcf0d9cdf0533 (patch)
treea854d2e5c1abbaba5eeff0d719df2a827c71a9ba /manifests/subsystems/motd.pp
parent7433f4dfc9ea4056871ef273368e9826ccf38517 (diff)
downloadpuppet-nodo-1b44048f33e795162212d2fdc77bcf0d9cdf0533.tar.gz
puppet-nodo-1b44048f33e795162212d2fdc77bcf0d9cdf0533.tar.bz2
Module organization
Diffstat (limited to 'manifests/subsystems/motd.pp')
-rw-r--r--manifests/subsystems/motd.pp17
1 files changed, 17 insertions, 0 deletions
diff --git a/manifests/subsystems/motd.pp b/manifests/subsystems/motd.pp
new file mode 100644
index 0000000..c8029bf
--- /dev/null
+++ b/manifests/subsystems/motd.pp
@@ -0,0 +1,17 @@
+class motd {
+ # 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"],
+ }
+}