17 lines
249 B
Plaintext
17 lines
249 B
Plaintext
|
#!/bin/ksh
|
||
|
|
||
|
daemon="/usr/local/bin/python3"
|
||
|
daemon_flags="wsgi.py"
|
||
|
daemon_user="pywallter"
|
||
|
location="/home/pywallter/pywallter"
|
||
|
|
||
|
. /etc/rc.d/rc.subr
|
||
|
|
||
|
rc_start() {
|
||
|
${rcexec} "cd ${location}; ${daemon} ${daemon_flags}"
|
||
|
}
|
||
|
|
||
|
rc_bg=YES
|
||
|
rc_cmd $1
|
||
|
|