debian/cubicweb-server.prerm
author Christophe de Vienne <christophe@unlish.com>
Wed, 30 Apr 2014 21:04:14 +0200
changeset 10012 8c2c6fdd8d56
parent 0 b97547f5f1fa
permissions -rw-r--r--
[RichString] Add markdown support Supporting markdown requires the 'Markdown' python packages, and since it widely available on the target platforms adding it as a strong requirements will not be a big constraint. Closes #3814302

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