From: Stephen Gran Date: Wed, 22 Apr 2009 23:15:12 +0000 (+0100) Subject: OK, it's picky if you don't give it a path X-Git-Url: https://git.adam-barratt.org.uk/?a=commitdiff_plain;h=0eff6d9838c5934a6c9c8d11e43e567965c45f0b;p=mirror%2Fdsa-puppet.git OK, it's picky if you don't give it a path Signed-off-by: Stephen Gran --- diff --git a/modules/motd/manifests/init.pp b/modules/motd/manifests/init.pp index 7c1f74e9b..c5c823926 100644 --- a/modules/motd/manifests/init.pp +++ b/modules/motd/manifests/init.pp @@ -4,6 +4,6 @@ class motd { content => template("motd.erb") ; } exec { "updatemotd": - command => "uname -snrvm > /var/run/motd && cat /etc/motd.tail >> /var/run/motd" + command => "/bin/uname -snrvm > /var/run/motd && /bin/cat /etc/motd.tail >> /var/run/motd" } }