From: Stephen Gran Date: Wed, 22 Apr 2009 23:24:30 +0000 (+0100) Subject: refresh only for command X-Git-Url: https://git.adam-barratt.org.uk/?a=commitdiff_plain;h=88fed06f1b8244ade89153deb977ca11af199e70;p=mirror%2Fdsa-puppet.git refresh only for command Signed-off-by: Stephen Gran --- diff --git a/modules/motd/manifests/init.pp b/modules/motd/manifests/init.pp index c5c823926..f8726866f 100644 --- a/modules/motd/manifests/init.pp +++ b/modules/motd/manifests/init.pp @@ -4,6 +4,7 @@ class motd { content => template("motd.erb") ; } exec { "updatemotd": - command => "/bin/uname -snrvm > /var/run/motd && /bin/cat /etc/motd.tail >> /var/run/motd" + command => "/bin/uname -snrvm > /var/run/motd && /bin/cat /etc/motd.tail >> /var/run/motd", + refreshonly => true } }