debian/cubicweb-twisted.prerm
author Christophe de Vienne <cdevienne@gmail.com>
Wed, 30 Apr 2014 10:13:10 +0200
changeset 9719 d02c8d77ac56
parent 0 b97547f5f1fa
permissions -rw-r--r--
[doc] Typo

#! /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