Skip to content

Commit

Permalink
Merge pull request #11301 from zhaojh329/rtty
Browse files Browse the repository at this point in the history
rtty: update to 7.1.1
  • Loading branch information
neheb authored Feb 11, 2020
2 parents 8efc058 + 155b815 commit 43fd047
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
6 changes: 3 additions & 3 deletions utils/rtty/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
include $(TOPDIR)/rules.mk

PKG_NAME:=rtty
PKG_VERSION:=7.1.0
PKG_RELEASE:=1
PKG_VERSION:=7.1.1
PKG_RELEASE:=2

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL=https://github.com/zhaojh329/rtty/releases/download/v$(PKG_VERSION)
PKG_HASH:=7e3910f0d9d68f1792d445de6b08c740dc4af53258275dc8294aa2d18b455bec
PKG_HASH:=05cc5fcf126041f3bc79d92123ff2a19da25806f77fc12286498ee85da139a74
CMAKE_INSTALL:=1

PKG_LICENSE:=MIT
Expand Down
1 change: 1 addition & 0 deletions utils/rtty/files/rtty.config
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@
# option port '5912' # Server Port
# option ssl 1 # Whether to use ssl
# option token 'your-token' # generated by rttys
# option verbose '1' # verbose log
14 changes: 6 additions & 8 deletions utils/rtty/files/rtty.init
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ validate_rtty_section() {
'host:host' \
'port:port' \
'ssl:bool:0' \
'token:maxlength(32)'
'token:maxlength(32)' \
'verbose:bool:0'
}

start_rtty() {
Expand All @@ -38,20 +39,17 @@ start_rtty() {
return 1
}

[ -z "$port" ] && {
echo "port required" >&2
return 1
}

[ -z "$id" ] && {
id=$(cat /sys/class/net/$ifname/address | sed 's/://g' | tr 'a-z' 'A-Z')
id=$(sed 's/://g' /sys/class/net/$ifname/address | tr 'a-z' 'A-Z')
}

procd_open_instance
procd_set_param command $BIN -h $host -p $port -I "$id" -a
procd_set_param command $BIN -h $host -I "$id" -a
[ -n "$port" ] && procd_append_param command -p "$port"
[ -n "$description" ] && procd_append_param command -d "$description"
[ "$ssl" = "1" ] && procd_append_param command -s
[ -n "$token" ] && procd_append_param command -t "$token"
[ "$verbose" = "1" ] && procd_append_param command -v
procd_set_param respawn
procd_close_instance
}
Expand Down

0 comments on commit 43fd047

Please sign in to comment.