debian/cubicweb-server.prerm
author Julien Cristau <julien.cristau@logilab.fr>
Tue, 21 Jan 2014 14:00:26 +0100
branchstable
changeset 9437 838d58a30f7e
parent 0 b97547f5f1fa
permissions -rw-r--r--
[debian] move yams max version to Depends And fix a syntax error and wrong package name in the process.

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