blob: 0b504c1133f7270a86373fcdadb7b7bb042c5226 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/bin/sh /etc/rc.common
USE_PROCD=1
START=99
STOP=10
DEFAULT_TELNET_PORT=2333
start_service() {
source /lib/functions/sentinel.sh
allowed_to_run "minipot" || return 1
config_load sentinel
local telnet_port
config_get telnet_port minipot telnet_port "$DEFAULT_TELNET_PORT"
procd_open_instance
procd_set_param command /usr/bin/sentinel-minipot
[ "$telnet_port" = "0" ] || procd_append_param command -T "$telnet_port"
procd_set_param respawn 3600 5 5
procd_set_param file /etc/config/sentinel
procd_close_instance
}
|