aboutsummaryrefslogtreecommitdiff
path: root/manifests/motd.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/motd.pp')
-rw-r--r--manifests/motd.pp17
1 files changed, 0 insertions, 17 deletions
diff --git a/manifests/motd.pp b/manifests/motd.pp
deleted file mode 100644
index c8029bf..0000000
--- a/manifests/motd.pp
+++ /dev/null
@@ -1,17 +0,0 @@
-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"],
- }
-}