/usr/share/sadms-2.0.15/_postcheck.sh is in sadms 2.0.15.repack-0ubuntu2.
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 20 21 22 23 24 25 26 27 28 29 | #!/bin/bash
# bbou@ac-toulouse.fr
# 2007-05-22 16:38:11
# _postcheck.sh
### P A R A M S
MYVERBOSE=
if [ "$1" == "-v" ];then
export MYVERBOSE="-v"
shift
fi
MYREALM="$1"
### I N C L U D E
. ./_include.sh
### S T A R T
# P R E
./_precheck.sh ${MYVERBOSE} "$1"
echo "--------------------------------------------------------------------------------"
echo "POSTCHECK"
echo "--------------------------------------------------------------------------------"
# C O N F I G U R A T I O N
./_check-conf.sh ${MYREALM}
|