diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2010-09-01 19:03:45 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2010-09-01 19:03:45 -0300 |
commit | 01a4f76db05bc39816dd7aa3bc65e0f0d235f531 (patch) | |
tree | b232adc9724b680b61e847ad007542a1f694d6c9 /files | |
parent | 247f2a353386daf82399228b2bc01a4aa12ff81f (diff) | |
download | puppet-backup-01a4f76db05bc39816dd7aa3bc65e0f0d235f531.tar.gz puppet-backup-01a4f76db05bc39816dd7aa3bc65e0f0d235f531.tar.bz2 |
Changing 'info' to 'fatal' at rsync handler set_lockfile function
Diffstat (limited to 'files')
-rw-r--r-- | files/handlers/rsync | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/files/handlers/rsync b/files/handlers/rsync index 0d9bb11..b4c16b7 100644 --- a/files/handlers/rsync +++ b/files/handlers/rsync @@ -856,8 +856,7 @@ function set_lockfile { if ( set -o noclobber; echo "$$" > "$lockfile" ) &> /dev/null; then trap 'unset_lockfile' INT TERM EXIT else - info "Could not create lockfile $lockfile, exiting" - exit + fatal "Could not create lockfile $lockfile, exiting" fi fi |