mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-25 19:32:44 +01:00
16 lines
276 B
Bash
16 lines
276 B
Bash
#!/sbin/openrc-run
|
|
|
|
: ${command_user:="uptermd:uptermd"}
|
|
|
|
name=uptermd
|
|
description="Secure terminal sharing deamon"
|
|
command="/usr/bin/uptermd"
|
|
command_background="yes"
|
|
pidfile="/run/$RC_SVCNAME.pid"
|
|
capabilities="^cap_net_bind_service"
|
|
|
|
depend() {
|
|
need net
|
|
after firewall
|
|
}
|