diff options
Diffstat (limited to 'dhcpcd')
-rw-r--r-- | dhcpcd/80-pacredir | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dhcpcd/80-pacredir b/dhcpcd/80-pacredir index 3e7addb..6e8561b 100644 --- a/dhcpcd/80-pacredir +++ b/dhcpcd/80-pacredir @@ -3,8 +3,8 @@ case "${reason}" in BOUND|REBIND|REBOOT|RENEW|TIMEOUT|STATIC) # inform pacredir about reestablished connection - if pgrep -x pacredir >/dev/null; then - kill -HUP $(pgrep -x pacredir) + if systemctl is-active -q pacredir.service; then + systemctl reload pacredir.service fi ;; PREINIT|EXPIRE|INFORM|FAIL|IPV4LL|NAK|NOCARRIER|RELEASE|STOP) |