debian/cubicweb-server.prerm
author Dimitri Papadopoulos <dimitri.papadopoulos@cea.fr>
Mon, 19 Oct 2015 23:39:30 +0200
changeset 10948 3ffacbdf7e9c
parent 0 b97547f5f1fa
permissions -rw-r--r--
[skel] remove (what looks like) a spurious copy/paste

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