Rewrote test to determine system manager

This commit is contained in:
mboelen 2016-03-17 20:32:21 +01:00
parent e399b49e1e
commit a427eb6fa7
1 changed files with 15 additions and 3 deletions

View File

@ -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")