no, we like the link
authorStephen Gran <steve@lobefin.net>
Sun, 7 Oct 2012 15:01:57 +0000 (16:01 +0100)
committerStephen Gran <steve@lobefin.net>
Sun, 7 Oct 2012 15:01:57 +0000 (16:01 +0100)
Signed-off-by: Stephen Gran <steve@lobefin.net>
modules/motd/manifests/init.pp

index 6f95ff6..99fda5d 100644 (file)
@@ -13,24 +13,16 @@ class motd {
                $notify = undef
                $mode   = '0555'
 
-               file { '/etc/motd':
-                       ensure  => present,
-                       replace => false
-               }
-
        } elsif $::lsbdistcodename == 'squeeze' {
                $fname  = '/etc/motd.tail'
                $notify = Exec['updatemotd']
                $mode   = '0444'
 
-               file { '/etc/motd':
-                       ensure => link,
-                       target => '/var/run/motd'
-               }
-               exec { 'updatemotd':
-                       command     => 'uname -snrvm > /var/run/motd && cat /etc/motd.tail >> /var/run/motd',
-                       refreshonly => true,
-               }
+       }
+
+       file { '/etc/motd':
+               ensure => link,
+               target => '/var/run/motd'
        }
 
        file { $fname:
@@ -38,4 +30,9 @@ class motd {
                mode    => $mode,
                content => template('motd/motd.erb')
        }
+
+       exec { 'updatemotd':
+               command     => 'uname -snrvm > /var/run/motd && cat /etc/motd.tail >> /var/run/motd',
+               refreshonly => true,
+       }
 }