mirror of https://github.com/telemt/telemt.git
17 lines
290 B
Bash
17 lines
290 B
Bash
#!/bin/ksh
|
|
# /etc/rc.d/telemt
|
|
#
|
|
# rc.d(8) script for Telemt MTProxy daemon.
|
|
# Tokio runtime does not daemonize itself, so rc_bg=YES is used.
|
|
|
|
daemon="/usr/local/bin/telemt"
|
|
daemon_user="_telemt"
|
|
daemon_flags="/etc/telemt/config.toml"
|
|
|
|
. /etc/rc.d/rc.subr
|
|
|
|
rc_bg=YES
|
|
rc_reload=NO
|
|
|
|
rc_cmd $1
|