/usr/sbin/fixalvl is in hybserv 1.9.5-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 | #!/bin/sh
set -e
# this script will remove all ALVL occurencies in chan.db
echo Starting ALVL remove...
if [ -f chan.db ]; then
grep -v "ALVL" chan.db > chan.db.$$
mv -f chan.db.$$ chan.db
fi
echo done.
|