debian/cubicweb-server.prerm
author David Douard <david.douard@logilab.fr>
Tue, 02 Sep 2014 12:22:18 +0200
branchstable
changeset 9928 0d831b40fa48
parent 0 b97547f5f1fa
permissions -rw-r--r--
[compat] Remove imports of "any" and "all" from lgc (closes #4306044) They're builtin since python 2.5.

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