diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/check-puppetd.sh.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/check-puppetd.sh.erb b/templates/check-puppetd.sh.erb index d64c21b..1340315 100644 --- a/templates/check-puppetd.sh.erb +++ b/templates/check-puppetd.sh.erb @@ -39,7 +39,7 @@ function set_lockfile { function unset_lockfile { if [ ! -z "$LOCKFILE" ]; then - $rm -f $LOCKFILE || echo "Could not remove lockfile $LOCKFILE" + rm -f $LOCKFILE || echo "Could not remove lockfile $LOCKFILE" fi } |