Rebuild motd when the tail changes
[mirror/dsa-puppet.git] / modules / motd / manifests / init.pp
1 class motd {
2         file { "/etc/motd.tail":
3                 notify  => Exec["updatemotd"],
4                 content => template("motd.erb") ;
5         }
6         exec { "updatemotd":
7                 command => "uname -snrvm > /var/run/motd && cat /etc/motd.tail >> /var/run/motd"
8         }
9 }