mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-12-25 23:03:34 +01:00
14 lines
200 B
Bash
Executable File
14 lines
200 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# restart webkit instances one by one forever
|
|
#
|
|
|
|
while :
|
|
do
|
|
for ((i=8080; i<8090; i++))
|
|
do
|
|
sleep 30
|
|
/usr/bin/supervisorctl restart webkit:webkit-$i
|
|
done
|
|
done
|