do not allow more than one working copy

This commit is contained in:
belliash 2012-01-04 12:59:16 +01:00
parent 63c21a5be8
commit 5fc24e9c74
1 changed files with 8 additions and 0 deletions

8
ezsync
View File

@ -15,6 +15,14 @@ source ${EZROOT}/libraries/common
loadLibraries
loadConfiguration
# Do not allow more than one working copy
PID=$(pidof -s -o '%PPID' -x ${EZNAME})
if [ ${PID} ]; then
printWarn "The ${EZNAME} is already working with PID: ${PID}"
printWarn "You cannot have more than one instancies running"
exit 0
fi
# Print EzBuild notice and parse arguments
printNotice
until [[ -z "${1}" ]]; do