|
@ -17,7 +17,8 @@ start_rtty() { |
|
|
'description:maxlength(126)' \ |
|
|
'description:maxlength(126)' \ |
|
|
'host:host' \ |
|
|
'host:host' \ |
|
|
'port:port' \ |
|
|
'port:port' \ |
|
|
'ssl:bool:0' |
|
|
|
|
|
|
|
|
'ssl:bool:0' \ |
|
|
|
|
|
'ping:uinteger:5' |
|
|
|
|
|
|
|
|
[ $? -eq 1 ] && { |
|
|
[ $? -eq 1 ] && { |
|
|
echo "validation failed" >&2 |
|
|
echo "validation failed" >&2 |
|
@ -42,7 +43,7 @@ start_rtty() { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
procd_open_instance |
|
|
procd_open_instance |
|
|
procd_set_param command $BIN -h $host -p $port -a |
|
|
|
|
|
|
|
|
procd_set_param command $BIN -h $host -p $port -a -P $ping |
|
|
[ -n "$ifname" ] && procd_append_param command -i "$ifname" |
|
|
[ -n "$ifname" ] && procd_append_param command -i "$ifname" |
|
|
[ -n "$id" ] && procd_append_param command -I "$id" |
|
|
[ -n "$id" ] && procd_append_param command -I "$id" |
|
|
[ -n "$description" ] && procd_append_param command -d "$description" |
|
|
[ -n "$description" ] && procd_append_param command -d "$description" |
|
|