mirror of https://github.com/dirtbags/moth.git
21 lines
386 B
Bash
Executable File
21 lines
386 B
Bash
Executable File
#! /bin/sh -e
|
|
|
|
exec 2>&1
|
|
|
|
IP=$(dbip -p ../p2console/ip.txt)
|
|
|
|
# Link in puzzles and web pages
|
|
install -d /var/www
|
|
for d in /opt/*; do
|
|
w=/var/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/* /var/www/
|
|
fi
|
|
done
|
|
|
|
cd /var/www
|
|
exec tcpsvd -u nobody ${IP%/*} 80 /opt/p2/bin/eris -c.
|