mirror of
https://github.com/dirtbags/tanks.git
synced 2025-01-17 04:15:23 -07:00
18 lines
186 B
Bash
18 lines
186 B
Bash
#!/bin/sh
|
|
|
|
cd $(dirname $0)/../www
|
|
|
|
export BASE_PATH=/tanks/www/state/
|
|
|
|
(
|
|
httpd-foreground
|
|
) &
|
|
|
|
(
|
|
while true; do
|
|
../bin/round.sh /tanks/www/state/*
|
|
sleep 60
|
|
done
|
|
) &
|
|
|
|
wait
|