blob: 6e8561be1ef88d3fc0952d5184ec55cae579ab93 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
case "${reason}" in
BOUND|REBIND|REBOOT|RENEW|TIMEOUT|STATIC)
# inform pacredir about reestablished connection
if systemctl is-active -q pacredir.service; then
systemctl reload pacredir.service
fi
;;
PREINIT|EXPIRE|INFORM|FAIL|IPV4LL|NAK|NOCARRIER|RELEASE|STOP)
# do nothing here...
;;
esac
|