mirror of https://github.com/CISOfy/lynis.git
Improve systemd detection on Fedora
This commit is contained in:
parent
b9dba2f3be
commit
e949e560d7
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue