18 lines
236 B
Bash
Executable File
18 lines
236 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
source $(dirname $0)/conf-client/service.cfg
|
|
|
|
if [[ -z $(ps axf| grep pyhton | grep ${WebPort}) ]]
|
|
then
|
|
bash ./conf-client/webserver.sh ${WebPort} &
|
|
fi
|
|
|
|
while true
|
|
do
|
|
./conf-client/exec.sh
|
|
sleep $Rotation
|
|
done
|
|
|
|
|