mirror of https://github.com/dirtbags/moth.git
32 lines
732 B
Bash
Executable File
32 lines
732 B
Bash
Executable File
#! /bin/sh -e
|
|
|
|
exec 2>&1
|
|
|
|
IP=$(dbip -p ../p2console/ip.txt)
|
|
|
|
ip route add default via 10.0.0.1
|
|
|
|
if [ -z "$CTF_BASE" ] && ! grep -q " /www " /proc/mounts; then
|
|
mount -t tmpfs www /www
|
|
fi
|
|
|
|
# Link in puzzles and web pages
|
|
for d in $CTF_BASE/packages/*; do
|
|
w=$CTF_BASE/www/$(basename $d)
|
|
if [ -d $d/puzzles ] && ! [ -d $w ]; then
|
|
ln -sf $d/puzzles $w
|
|
fi
|
|
if [ -d $d/www ]; then
|
|
ln -sf $d/www/* $CTF_BASE/www/
|
|
fi
|
|
done
|
|
|
|
# news.html is persistent
|
|
if ! [ -f $CTF_BASE/state/news.html ]; then
|
|
cat $CTF_BASE/packages/p2/www/news.html > $CTF_BASE/state/news.html
|
|
fi
|
|
ln -sf $CTF_BASE/state/news.html $CTF_BASE/www
|
|
|
|
cd $CTF_BASE/www
|
|
exec tcpsvd -u nobody ${IP%/*} 80 $CTF_BASE/packages/p2/bin/eris -c.
|