/usr/lib/wims/bin/modupdate.auto is in wims 1:4.08~dfsg1-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 12 13 14 15 16 | #! /bin/sh
# Automatic daily module update
cd `dirname $0`/..
scripttest=yes
QUERY_STRING=
export scripttest
bin/server-interrupt
bin/modupdate mail
bin/server-resume
# Module indexing if necessary
if [ -f log/modupdate ]; then
bin/mkindex
rm -f log/modupdate
fi
|