debian/cubicweb-twisted.prerm
author Philippe Pepiot <philippe.pepiot@logilab.fr>
Wed, 22 Jun 2016 11:38:53 +0200
changeset 11355 47b0b08fbb4b
parent 0 b97547f5f1fa
permissions -rw-r--r--
[serverctl] allow to sync multiple and all sources in source-sync command Breaking change: by default source are not synced anymore if it is fresh (regards to synchronization-interval). To get the previous behavior an option --force is added. Closes #13886467

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