debian/cubicweb-ctl.postinst
author Denis Laxalde <denis.laxalde@logilab.fr>
Tue, 05 Jul 2016 10:44:05 +0200
branch3.23
changeset 11421 06bcb7e7a69c
parent 10559 5821ae654dfd
permissions -rw-r--r--
[pkg] Handle verbose option in setup.py's export function Make debugging easier.

#! /bin/sh -e

case "$1" in
    configure|abort-upgrade|abort-remove|abort-deconfigure)
        update-rc.d cubicweb defaults 99 >/dev/null
    ;;
    *)
        echo "postinst called with unknown argument \`$1'" >&2
        exit 1
    ;;
esac

#DEBHELPER#

exit 0