aboutsummaryrefslogtreecommitdiffstats
path: root/dispatch/dhcpcd
blob: b50cb87bb3af79d34c8971d1ad11ee7f38acc507 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

case "${reason}" in
	BOUND|REBIND|REBOOT|RENEW|TIMEOUT|STATIC)
		# inform pacredir about reestablished connection
		systemctl try-reload-or-restart pacredir.service
		;;
	PREINIT|EXPIRE|INFORM|FAIL|IPV4LL|NAK|NOCARRIER|RELEASE|STOP)
		# do nothing here...
		;;
esac