aboutsummaryrefslogtreecommitdiff
path: root/utils/rtty/files/rtty.init
diff options
context:
space:
mode:
authorJianhui Zhao <zhaojh329@gmail.com>2020-01-31 16:31:09 +0800
committerJianhui Zhao <zhaojh329@gmail.com>2020-01-31 16:31:09 +0800
commit34e19dbb6f7c708b1843b50e9610eb95dd683d05 (patch)
tree753e523560ca40fc30ebab02606dd468924b0f08 /utils/rtty/files/rtty.init
parentd56c71b1b3dbf640b7d77d94b27da6314ec50331 (diff)
rtty: update to 7.0.1
Drop the depend of libuwsc Signed-off-by: Jianhui Zhao <zhaojh329@gmail.com>
Diffstat (limited to 'utils/rtty/files/rtty.init')
-rw-r--r--utils/rtty/files/rtty.init9
1 files changed, 5 insertions, 4 deletions
diff --git a/utils/rtty/files/rtty.init b/utils/rtty/files/rtty.init
index 55a131053..297f393c2 100644
--- a/utils/rtty/files/rtty.init
+++ b/utils/rtty/files/rtty.init
@@ -13,7 +13,6 @@ validate_rtty_section() {
'host:host' \
'port:port' \
'ssl:bool:0' \
- 'keepalive:uinteger:5' \
'token:maxlength(32)'
}
@@ -44,10 +43,12 @@ start_rtty() {
return 1
}
+ [ -z "$id" ] && {
+ id=$(cat /sys/class/net/$ifname/address | sed 's/://g' | tr 'a-z' 'A-Z')
+ }
+
procd_open_instance
- procd_set_param command $BIN -h $host -p $port -a -k $keepalive
- [ -n "$ifname" ] && procd_append_param command -i "$ifname"
- [ -n "$id" ] && procd_append_param command -I "$id"
+ procd_set_param command $BIN -h $host -p $port -I "$id" -a
[ -n "$description" ] && procd_append_param command -d "$description"
[ "$ssl" = "1" ] && procd_append_param command -s
[ -n "$token" ] && procd_append_param command -t "$token"