Home | History | Annotate | Download | only in dhcpcd-hooks
      1 # Just echo our DHCP options we have
      2 
      3 if [ "$reason" = "TEST" ]; then
      4 	set | grep "^\(interface\|pid\|reason\|profile\|skip_hooks\)=" | sort
      5 	set | grep "^if\(carrier\|flags\|mtu\|wireless\|ssid\)=" | sort
      6 	set | grep "^\(new_\|old_\|ra_count=\|ra[0-9]*_\)" | sort
      7 	exit 0
      8 fi
      9