/usr/lib/amanda/application/script-fail is in amanda-client 1:3.5.1-1build2.
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 | #!/bin/bash
if [ "$1" = "support" ]; then
echo "CONFIG YES"
echo "HOST YES"
echo "DISK YES"
echo "MESSAGE-LINE YES"
echo "EXECUTE-WHERE YES"
echo "TIMESTAMP YES"
exit 0
else
echo "stderr error: " $1 >&2
exit 1
fi
|