1
0
Fork 0
mirror of https://github.com/dirtbags/moth.git synced 2025-01-06 12:00:34 -07:00
moth/packages/mcp/service/httpd/run

18 lines
293 B
Bash
Executable file

#! /bin/sh
exec 2>&1
install -d /var/www
# Link in puzzles and web pages
for d in /opt/*; do
if [ -d $d/puzzles ]; then
ln -sf $d/puzzles /var/www/$(basename $d)
fi
if [ -d $d/www ]; then
ln -sf $d/www/* /var/www/
fi
done
exec mathopd -n -f ./mathopd.conf