/usr/share/python/runtime.d/mailman.rtupdate is in mailman 1:2.1.26-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 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | #!/bin/sh
# this script stops mailman before a Python default runtime change and
# restarts it afterwards
DESC="Mailman MailingList Server"
NAME="mailman"
# Read configuration variable file if it is present
[ -r "/etc/default/$NAME" ] && . "/etc/default/$NAME"
# Load the VERBOSE setting and other rcS variables
[ -f /etc/default/rcS ] && . /etc/default/rcS
# Define LSB log_* functions.
# Depend on lsb-base (>= 3.0-6) to ensure that this file is present.
. /lib/lsb/init-functions
if [ "$#" != 3 ]; then
echo "Usage: $0 {pre-rtupdate|post-rtupdate|rtupdate} <oldruntime> <newruntime>" >&2
exit 1
fi
action="$1"
oldruntime="$2"
newruntime="$3"
case "$action" in
pre-rtupdate)
[ "$VERBOSE" != no ] && log_warning_msg "Stopping $DESC during Python runtime change..."
invoke-rc.d "$NAME" stop
;;
post-rtupdate)
[ "$VERBOSE" != no ] && log_warning_msg "Restarting $DESC after Python runtime change..."
invoke-rc.d "$NAME" start
;;
rtupdate)
;;
*)
echo "$0 called with unknown argument \`$action'" >&2
exit 0
;;
esac
|