/lib/dhcpcd/dhcpcd-hooks/02-dump is in dhcpcd5 5.2.12-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 | # Just echo our DHCP options we have
if [ "$reason" = "DUMP" ]; then
set | sed -ne 's/^new_//p' | sort
fi
|