mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-07 01:32:26 +01:00
17 lines
264 B
Bash
17 lines
264 B
Bash
#!/sbin/openrc-run
|
|
|
|
name=microsocks
|
|
description="multithreaded, small, efficient SOCKS5 server"
|
|
command="/usr/bin/$name"
|
|
supervisor=supervise-daemon
|
|
|
|
pidfile="/run/$RC_SVCNAME.pid"
|
|
|
|
: ${respawn_delay:=5}
|
|
: ${respawn_max:=0}
|
|
|
|
depend() {
|
|
need net
|
|
after firewall
|
|
}
|