8 lines
276 B
Text
8 lines
276 B
Text
# Just echo our DHCP options we have
|
|
|
|
if [ "$reason" = "TEST" ]; then
|
|
set | grep "^\(interface\|pid\|reason\|profile\|skip_hooks\)=" | sort
|
|
set | grep "^if\(carrier\|flags\|mtu\|wireless\|ssid\)=" | sort
|
|
set | grep "^\(new_\|old_\|ra_count=\|ra[0-9]*_\)" | sort
|
|
exit 0
|
|
fi
|