/usr/lib/wims/bin/server-interrupt is in wims 1:4.07d~dfsg1-1ubuntu2.
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 | #! /bin/sh
WIMS_HOME=`dirname $0`/..
cd $WIMS_HOME/public_html
if [ ! -f wims ]; then exit; fi
ln -sf interrupt.cgi wims.cgi
# rm -f $WIMS_HOME/tmp/log/wimslogd.pid
# We must sleep in order to let all the running processes terminate.
echo Waiting for running processes to terminate...
sleep 10
echo OK.
|