Fix systemd detection on windows
This commit is contained in:
parent
9b9c1105eb
commit
d0af0804a0
|
@ -10,7 +10,7 @@ PROGRAM_BINARY=$PROGRAM".sh"
|
||||||
PROGRAM_BATCH=$PROGRAM"-batch.sh"
|
PROGRAM_BATCH=$PROGRAM"-batch.sh"
|
||||||
SSH_FILTER="ssh_filter.sh"
|
SSH_FILTER="ssh_filter.sh"
|
||||||
|
|
||||||
SCRIPT_BUILD=2020112901
|
SCRIPT_BUILD=2023061101
|
||||||
INSTANCE_ID="installer-$SCRIPT_BUILD"
|
INSTANCE_ID="installer-$SCRIPT_BUILD"
|
||||||
|
|
||||||
## osync / obackup / pmocr / zsnap install script
|
## osync / obackup / pmocr / zsnap install script
|
||||||
|
@ -80,15 +80,26 @@ function SetLocalOSSettings {
|
||||||
}
|
}
|
||||||
|
|
||||||
function GetInit {
|
function GetInit {
|
||||||
|
init="none"
|
||||||
if [ -f /sbin/openrc-run ]; then
|
if [ -f /sbin/openrc-run ]; then
|
||||||
init="openrc"
|
init="openrc"
|
||||||
Logger "Detected openrc." "NOTICE"
|
Logger "Detected openrc." "NOTICE"
|
||||||
|
elif [ -f /usr/lib/systemd/systemd ]; then
|
||||||
|
init="systemd"
|
||||||
|
Logger "Detected systemd." "NOTICE"
|
||||||
elif [ -f /sbin/init ]; then
|
elif [ -f /sbin/init ]; then
|
||||||
if file /sbin/init | grep systemd > /dev/null; then
|
if type -p file > /dev/null 2>&1; then
|
||||||
init="systemd"
|
if file /sbin/init | grep systemd > /dev/null; then
|
||||||
Logger "Detected systemd." "NOTICE"
|
init="systemd"
|
||||||
|
Logger "Detected systemd." "NOTICE"
|
||||||
|
else
|
||||||
|
init="initV"
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
init="initV"
|
init="initV"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ $init == "initV" ]; then
|
||||||
Logger "Detected initV." "NOTICE"
|
Logger "Detected initV." "NOTICE"
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue