packages dropped
[gentoo-zh.git] / net-proxy / Xray / files / xray.initd
blob6d8f8f571982a0476a5e31e29d757758a36c9639
1 #!/sbin/openrc-run
2 # Copyright 1999-2020 Gentoo Authors
3 # Distributed under the terms of the GNU General Public License v2
5 depend() {
6         need net
9 checkconfig() {
10         if [ "${RC_SVCNAME}" != "xray" ] ; then
11                 XR_CFGNAME="${RC_SVCNAME#*.}."
12         fi
14         XR_CONFIG="/etc/xray/config.${XR_CFGNAME}json"
15         XR_PIDFILE="/run/xray.${XR_CFGNAME}pid"
16         XR_LOG="/var/log/xray.${XR_CFGNAME}log"
18         if [ ! -f ${XR_CONFIG} ]; then
19                 ewarn "${XR_CONFIG} does not exist."
20                 return 1
21         fi
23         return 0
26 start() {
27         checkconfig || return 1
29         ebegin "Starting Xray"
30         ebegin "Log File : ${XR_LOG}"
31         start-stop-daemon --start       \
32         -b -1 ${XR_LOG} -2 ${XR_LOG}    \
33         -m -p ${XR_PIDFILE}             \
34         --exec /usr/bin/xray  -- -config ${XR_CONFIG}
35         eend $?
39 stop() {
40         checkconfig || return 1
41         ebegin "Stopping xray"
42         start-stop-daemon --stop -p ${XR_PIDFILE}
43         eend $?