debian/cubicweb-twisted.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Thu, 08 Dec 2011 13:17:25 +0100
changeset 8114 8311cc3b472a
parent 0 b97547f5f1fa
permissions -rw-r--r--
Link to python docs about strftime instead of pointing at "man" (closes #2106415) Not ideal, but better than pointing all users at Unix command-line tools.

#! /bin/sh -e
 
case "$1" in
    remove)
	if [ -x "/etc/init.d/cubicweb-ctl" ]; then
	    invoke-rc.d cubicweb-ctl stop || true
	fi
    ;;
esac
 
#DEBHELPER#
 
exit 0