Merge pull request #2477 from bcambl/debug_init_service_check

fix debug service check via sysvinit
pull/2498/head
Mark Drobnak 6 years ago committed by GitHub
commit bbb759c684
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -836,9 +836,13 @@ process_status(){
local status_of_process
status_of_process=$(systemctl is-active "${i}")
else
# Otherwise, use the service command
# Otherwise, use the service command and mock the output of `systemctl is-active`
local status_of_process
status_of_process=$(service "${i}" status | awk '/Active:/ {print $2}') &> /dev/null
if service "${i}" status | grep -E 'is\srunning' &> /dev/null; then
status_of_process="active"
else
status_of_process="inactive"
fi
fi
# and print it out to the user
if [[ "${status_of_process}" == "active" ]]; then

Loading…
Cancel
Save