2
0
mirror of https://github.com/deajan/osync synced 2024-11-03 15:40:14 +00:00

check for sudo when needed

This commit is contained in:
deajan 2017-02-07 22:13:52 +01:00
parent ea58a65954
commit 0aaf988c48

View File

@ -4,7 +4,7 @@ PROGRAM="osync" # Rsync based two way sync engine with fault tolerance
AUTHOR="(C) 2013-2017 by Orsiris de Jong"
CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr"
PROGRAM_VERSION=1.2-RC1+dev
PROGRAM_BUILD=2017020601
PROGRAM_BUILD=2017020701
IS_STABLE=no
# Execution order #__WITH_PARANOIA_DEBUG
@ -195,6 +195,13 @@ function CheckCurrentConfigAll {
exit 1
fi
fi
if [ "$SUDO_EXEC" == "yes" ]; then
if ! type sudo > /dev/null 2>&1; then
Logger "sudo is not available. Disabling sudo mode." "WARN"
SUDO_EXEC=no
fi
fi
}
###### Osync specific functions (non shared)