Improve systemd detection on Fedora

This commit is contained in:
mboelen 2016-03-17 20:57:31 +01:00
parent b9dba2f3be
commit e949e560d7
1 changed files with 7 additions and 2 deletions

View File

@ -97,8 +97,13 @@
SERVICE_MANAGER="upstart"
;;
*)
LogText "Found ${SHORTNAME}. Unclear what service manager this is"
ReportException "${TEST_NO}:001" "Unknown service manager"
CONTAINS_SYSTEMD=`echo ${SHORTNAME} | grep "systemd"`
if [ ! "${CONTAINS_SYSTEMD}" = "" ]; then
SERVICE_MANAGER="systemd"
else
LogText "Found ${SHORTNAME}. Unclear what service manager this is"
ReportException "${TEST_NO}:001" "Unknown service manager"
fi
;;
esac
else