mirror of https://github.com/dirtbags/moth.git
11 lines
160 B
Plaintext
11 lines
160 B
Plaintext
|
#! /bin/sh
|
||
|
|
||
|
user=$1
|
||
|
uid=$(id -u $user)
|
||
|
|
||
|
su -s /srv/moth/mothd $user &
|
||
|
|
||
|
cd /srv/moth/default/www
|
||
|
exec s6-tcpserver -u $uid 0.0.0.0 80 /usr/local/bin/eris -. -c
|
||
|
|