This website works better with JavaScript.
Home
Help
Sign In
LILiK
/
openwrt-packages-dist
Watch
5
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
openconnect: forward SIGINT to app
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
lilik-openwrt-22.03
Nikos Mavrogiannopoulos
10 years ago
parent
d834e6c9c2
commit
a412f2cc46
2 changed files
with
12 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
net/openconnect/Makefile
+11
-1
net/openconnect/files/openconnect-wrapper
+ 1
- 1
net/openconnect/Makefile
View File
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME
:=
openconnect
PKG_VERSION
:=
6.00
PKG_RELEASE
:=
3
PKG_RELEASE
:=
4
PKG_SOURCE
:=
$(
PKG_NAME
)
-
$(
PKG_VERSION
)
.tar.gz
PKG_SOURCE_URL
:=
ftp://ftp.infradead.org/pub/openconnect/
+ 11
- 1
net/openconnect/files/openconnect-wrapper
View File
@ -22,7 +22,17 @@ cleanup()
exit 0
}
trap cleanup 1 2 3 6 15
cleanup2()
{
if ! test -z "$pid";then
kill -2 $pid
wait $pid
fi
exit 0
}
trap cleanup2 2
trap cleanup 1 3 6 15
rm -f "$pidfile"
/usr/sbin/openconnect $* <$pwfile &
Write
Preview
Loading…
Cancel
Save