hilfe mein git ist komisch
This commit is contained in:
21
etc/network/if-down.d/openvpn
Executable file
21
etc/network/if-down.d/openvpn
Executable file
@@ -0,0 +1,21 @@
|
||||
#!/bin/sh
|
||||
|
||||
OPENVPN=/usr/sbin/openvpn
|
||||
OPENVPN_INIT=/etc/init.d/openvpn
|
||||
SYSTEMCTL=/bin/systemctl
|
||||
SYSTEMD=/run/systemd/system
|
||||
|
||||
if [ ! -x $OPENVPN ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [ -n "$IF_OPENVPN" ]; then
|
||||
for vpn in $IF_OPENVPN; do
|
||||
## check systemd present
|
||||
if [ -d $SYSTEMD ]; then
|
||||
$SYSTEMCTL stop openvpn@$vpn
|
||||
else
|
||||
$OPENVPN_INIT stop $vpn
|
||||
fi
|
||||
done
|
||||
fi
|
||||
Reference in New Issue
Block a user