aboutsummaryrefslogtreecommitdiffstats
path: root/dhcpcd/80-pacredir
diff options
context:
space:
mode:
Diffstat (limited to 'dhcpcd/80-pacredir')
-rw-r--r--dhcpcd/80-pacredir13
1 files changed, 0 insertions, 13 deletions
diff --git a/dhcpcd/80-pacredir b/dhcpcd/80-pacredir
deleted file mode 100644
index 3e7addb..0000000
--- a/dhcpcd/80-pacredir
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-
-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)
- fi
- ;;
- PREINIT|EXPIRE|INFORM|FAIL|IPV4LL|NAK|NOCARRIER|RELEASE|STOP)
- # do nothing here...
- ;;
-esac