]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/motd/manifests/init.pp
Merge branch 'master' of git+ssh://zobel@handel.debian.org/srv/puppet.debian.org...
[dsa-puppet.git] / modules / motd / manifests / init.pp
1 class motd {
2         file { "/etc/motd.tail":
3                 notify  => Exec["updatemotd"],
4                 content => template("motd/motd.erb") ;
5         }
6         exec { "updatemotd":
7                 command => "uname -snrvm > /var/run/motd && cat /etc/motd.tail >> /var/run/motd",
8                 refreshonly => true
9         }
10 }