/usr/share/bug/nis/script is in nis 3.17.1-1build1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #!/bin/sh -e
if [ -z "$YESNO" ]; then
YESNO=$"yYnN"
fi
yesno "May I include your NIS domain name in the bug report? [Y/n] " yep
if [ "$REPLY" = "yep" ]; then
echo >&3
echo "NIS domain: $(/bin/domainname) " >&3
echo
fi
if [ -x /usr/bin/nm-tool ]; then
/usr/bin/nm-tool >&3
else
echo "nm-tool is not installed" >&3
fi
|