diff options
author | Christian Hesse <mail@eworm.de> | 2014-09-02 08:02:21 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2014-09-02 08:02:21 +0200 |
commit | 44766618179803ab22b5905fae31542d2d3f61d0 (patch) | |
tree | 919decfd6fe820d81a272e70a273e714f345b594 | |
parent | fad14f92ae45ffc7343c8d0c175a8f5b33553262 (diff) | |
download | dhcpcd-hook-openvpn-0.2.0.tar.gz dhcpcd-hook-openvpn-0.2.0.tar.zst |
use pgrep0.2.0
-rw-r--r-- | 40-openvpn | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,9 +1,11 @@ #!/bin/sh - + case "${reason}" in BOUND|REBIND|REBOOT|RENEW|TIMEOUT|STATIC) # send openvpn processes SIGUSR1 and make them reconnect - killall -USR1 openvpn + if pgrep -x openvpn >/dev/null; then + kill -USR1 $(pgrep -x openvpn) + fi ;; PREINIT|EXPIRE|INFORM|FAIL|IPV4LL|NAK|NOCARRIER|RELEASE|STOP) # do nothing here... |