debian/cubicweb-twisted.prerm
author Rémi Cardona <remi.cardona@logilab.fr>
Wed, 13 May 2015 17:13:51 +0200
changeset 10423 d9d5c70c45dc
parent 0 b97547f5f1fa
permissions -rw-r--r--
[devtools] qunit: only start firefox once per test The separate profile initialization step doesn't seem necessary anymore. This was due to the system-wide installation of the "Sage" Firefox extensions which breaks -url on a fresh profile. Removing this obnoxious extension allows us to launch Firefox in a standard way. Related to #5533333.

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