debian/cubicweb-server.prerm
author pierre-yves
Thu, 13 Jun 2013 15:36:10 +0200
changeset 9016 0368b94921ed
parent 0 b97547f5f1fa
permissions -rw-r--r--
Drop hijack user (closes #2901093) Deprecated since 3.17.0. Dropping this function help the session cleanup business.

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