blob: 50bed5c8bbb46baaeab7f76b1ef759aa9358edbf (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
case "${reason}" in
BOUND|INFORM|REBIND|REBOOT|RENEW|TIMEOUT|STATIC)
# inform pacredir about reestablished connection
kill -HUP $(pgrep pacredir)
;;
PREINIT|EXPIRE|FAIL|IPV4LL|NAK|NOCARRIER|RELEASE|STOP)
# do nothing here...
;;
esac
|