ioemu/sats/sysd

42 lines
919 B
Plaintext
Raw Normal View History

#!/bin/bash
# (1) Primary init.
#--------------------------------------------------------#
# (1) Get absolute folder #
ROOT=$(dirname `realpath $0`);
ROOT=`dirname $ROOT`;
# (2) Check config file #
test ! -f $ROOT/com/config/sats && echo "Daemon not started" && exit 1;
# (3) Fetch BUFFERS #
source $ROOT/com/config/sats;
# (2) Start daemon
#--------------------------------------------------------#
SERV_LIST="`systemctl list-units --plain | grep 'sats' | grep -v '.slice' | awk '{print $1}'`";
while sleep 1; do
for serv in $SERV_LIST; do
2018-01-28 17:53:43 +00:00
status="`systemctl is-active $(basename $serv)`";
2018-01-28 17:53:43 +00:00
2018-01-28 18:08:11 +00:00
if [ "$status" = "failed" ]; then
2018-01-28 18:10:14 +00:00
echo "SYSD0$serv" >> $BUF_OUT;
2018-01-28 17:53:43 +00:00
2018-01-28 18:08:11 +00:00
elif [ "$status" = "inactive" ]; then
2018-01-28 18:10:14 +00:00
echo "SYSD1$serv" >> $BUF_OUT;
2018-01-28 18:08:11 +00:00
elif [ "$status" = "activating" ]; then
2018-01-28 18:10:14 +00:00
echo "SYSD2$serv" >> $BUF_OUT;
2018-01-28 18:08:11 +00:00
elif [ "$status" = "active" ]; then
2018-01-28 18:10:14 +00:00
echo "SYSD3$serv" >> $BUF_OUT;
2018-01-28 18:08:11 +00:00
fi;
2018-01-28 17:53:43 +00:00
done;
done;