blob: 379dc070fec38b6887a390f223e5c0a9544965c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#!/bin/sh /etc/rc.common
# Copyright (C) 2008-2014 OpenWrt.org
START=99
STOP=99
USE_PROCD=1
PROG=/usr/bin/socat
NAME=socat
validate_section_socat()
{
uci_validate_section socat socat "${1}" \
'enable:bool:1' \
'SocatOptions:string'
return $?
}
socat_instance()
{
local SocatOptions enable
validate_section_socat "${1}" || {
echo "validation failed"
return 1
}
[ "${enable}" = "0" ] && return 1
procd_open_instance
procd_set_param command "$PROG"
procd_append_param command ${SocatOptions}
procd_close_instance
}
start_service () {
config_load "${NAME}"
config_foreach socat_instance socat
}
|