mirror of
https://github.com/dirtbags/moth.git
synced 2025-01-08 04:51:06 -07:00
10 lines
166 B
Bash
Executable file
10 lines
166 B
Bash
Executable file
#! /bin/sh
|
|
|
|
exec 2>&1
|
|
|
|
for fn in /var/lib/ctf/tokens.db /var/lib/ctf/claim.db; do
|
|
touch $fn
|
|
chown ctf $fn
|
|
done
|
|
|
|
exec tcpsvd -u ctf 0 1 /opt/mcp/bin/in.tokend
|