6 lines
134 B
Bash
Executable File
6 lines
134 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ $( ps -e | grep -c eventService ) -lt 1 ]; then
|
|
start-stop-daemon -SbCv -x /opt/Monitor/monitor/eventService.py
|
|
fi
|