1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-30 18:51:24 +00:00
dockerfiles/frp/openwrt/frpc

14 lines
328 B
Plaintext
Raw Normal View History

2018-01-24 13:23:18 +00:00
#!/bin/sh /etc/rc.common
2019-05-25 10:39:40 +00:00
# Copyright (C) 2019 EasyPi Software Foundation
2018-01-24 13:23:18 +00:00
START=99
USE_PROCD=1
start_service() {
procd_open_instance
procd_set_param command /usr/bin/frpc -c /etc/frp/frpc.ini
2018-02-17 07:44:41 +00:00
procd_set_param file /etc/frp/frpc.ini
2018-01-24 13:23:18 +00:00
procd_set_param respawn 3600 5 0
procd_close_instance
}