xref: /minix3/external/bsd/dhcpcd/dist/dhcpcd-hooks/02-dump (revision 9f20bfa6c4c442e2e798d91b11c2a5f8d6833a41)
1# $NetBSD: 02-dump,v 1.6 2014/11/07 20:51:03 roy Exp $
2
3# Just echo our DHCP options we have
4
5case "$reason" in
6DUMP|DUMP6)
7	set | sed -ne 's/^new_//p' | sort
8	exit 0
9	;;
10esac
11