This commit is contained in:
Eric Nemchik 2018-03-13 15:38:18 +00:00 committed by GitHub
commit f24ab5b916
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -102,6 +102,14 @@ unzip-strip() (
fi && rm -rf "$temp"/* "$temp" fi && rm -rf "$temp"/* "$temp"
) )
IsSystemdSupported() {
if command -v systemctl > /dev/null && systemctl | grep -q '\-\.mount'; then
return 0
else
return 1
fi
}
# Import any custom config to override the defaults, if necessary # Import any custom config to override the defaults, if necessary
configfile="$(dirname $0)/update_ombi.conf" configfile="$(dirname $0)/update_ombi.conf"
if [ -e $configfile ]; then if [ -e $configfile ]; then
@ -222,7 +230,8 @@ fi
.log 6 "File size validated...checking Ombi service status..." .log 6 "File size validated...checking Ombi service status..."
declare -i running=0 declare -i running=0
if [ "`systemctl is-active $ombiservicename`" == "active" ]; then if IsSystemdSupported; then
if [ "`systemctl is-active $ombiservicename`" == "active" ]; then
running=1 running=1
.log 6 "Ombi is active...attempting to stop..." .log 6 "Ombi is active...attempting to stop..."
declare -i i=1 declare -i i=1
@ -252,8 +261,11 @@ if [ "`systemctl is-active $ombiservicename`" == "active" ]; then
exit 99 exit 99
fi fi
done done
else else
.log 6 "Ombi is not active...installing update..." .log 6 "Ombi is not active...installing update..."
fi
else
.log 4 "systemd not available..."
fi fi
unzip-strip $file $installdir unzip-strip $file $installdir