1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-26 05:27:27 +02:00

14 lines
328 B
Plaintext
Raw Normal View History

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