debian/cubicweb-twisted.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Thu, 12 Mar 2015 12:29:25 +0100
changeset 10273 ef74abcf369d
parent 0 b97547f5f1fa
permissions -rw-r--r--
[config] disable fckeditor by default (closes #1368900) FCKEditor is no longer maintained, and has a history of XSS issues. Let's use plain text as default text format.

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