8 lines
156 B
Bash
8 lines
156 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ ! "$(pidof concordia_server_process)" ]
|
||
|
then
|
||
|
@SCRIPTS_PATH@/restart.sh
|
||
|
echo `date` "restarted" >> @SCRIPTS_PATH@/watchdog.log
|
||
|
fi
|