From a427eb6fa77a10a33db9e9c6315d0ea5cddea6bd Mon Sep 17 00:00:00 2001 From: mboelen Date: Thu, 17 Mar 2016 20:32:21 +0100 Subject: [PATCH] Rewrote test to determine system manager --- include/tests_boot_services | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/include/tests_boot_services b/include/tests_boot_services index 1a225cc3..0e0a18af 100644 --- a/include/tests_boot_services +++ b/include/tests_boot_services @@ -70,9 +70,21 @@ case ${OS} in "Linux") if [ -f /proc/1/cmdline ]; then - FIND=`awk '/(^\/|init)/ { print $1 }' /proc/1/cmdline` - if [ ! "${FIND}" = "" ]; then - SHORTNAME=`echo ${FIND} | awk -F/ '{ print $NF }'` + FILENAME=`awk '/(^\/|init)/ { print $1 }' /proc/1/cmdline` + LogText "Result: cmdline found = ${FILENAME}" + ISFILE=`echo ${FILENAME} | grep "^/"` + if [ ! "${ISFILE}" = "" ]; then + if [ -L ${ISFILE} ]; then + ShowSymlinkPath ${ISFILE} + FILENAME="${SYMLINK}" + elif [ -f ${ISFILE} ]; then + FILENAME="${ISFILE}" + else + LogText "Result: cmdline of PID 1 is not a file" + fi + fi + if [ ! "${FILENAME}" = "" ]; then + SHORTNAME=`echo ${FILENAME} | awk -F/ '{ print $NF }'` LogText "Found: ${SHORTNAME}" case ${SHORTNAME} in "init")