Merge branch '904-No-funciona-agent-daemon-start-en-AIX' into 'pandora_6.0'

Load agent daemen for AIX in UNIX Daemon - #904

See merge request !511
This commit is contained in:
vgilc 2017-05-26 14:44:44 +02:00
commit 380aa3f3e1
1 changed files with 3 additions and 0 deletions

View File

@ -65,6 +65,9 @@ pidof_pandora () {
break
fi
done
elif [ "$OS_NAME" = "AIX" ]; then
# AIX
PANDORA_PID=`ps -ef | grep "$DAEMON $PANDORA_PATH" | grep -v grep | awk '{ print $2 }'`
else
PANDORA_PID=`ps -Afw | grep "$DAEMON $PANDORA_PATH" | grep -v grep | awk '{ print $2 }'`
fi