mirror of
https://github.com/dirtbags/moth.git
synced 2025-01-06 12:00:34 -07:00
13 lines
325 B
Bash
Executable file
13 lines
325 B
Bash
Executable file
#! /bin/sh
|
|
|
|
exec 2>&1
|
|
|
|
install -o ctf -m 0755 -d /var/lib/ctf/points.new
|
|
install -o ctf -m 0755 -d /var/lib/ctf/points.tmp
|
|
touch /var/lib/ctf/points.log
|
|
|
|
# Re-populate teams list for tanks
|
|
ls $base/teams/names | KEY="Too much cheese." /opt/mcp/bin/arc4 > $www/teams.txt.$$
|
|
mv $www/teams.txt.$$ $www/teams.txt
|
|
|
|
exec ./pointsd
|