/usr/bin/lp2pap.sh is in netatalk 2.2.6-1.
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 | #!/bin/sh
# pap script for lp systems
chdir "/etc/lp/printers/`basename $0`"
if [ -r "$6" ]; then
/usr/bin/pap -E "$6"
exit $?
fi
exit 2
|