/usr/share/bug/printer-driver-hpcups/script is in printer-driver-hpcups 3.17.10+repack0-5.
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 | #!/bin/sh -e
echo
while true; do
read -p "Do you wish to include your system configuration with this report (hp-check -r)? " yn
case $yn in
[Yy]* ) /usr/bin/hp-check -t -r >&3 2>&3; break;;
[Nn]* ) exit;;
* ) echo "Please answer yes or no.";;
esac
done
|