#!/bin/sh set -e SITE_DIR="/var/www/lliurex/moodle" LLXCFG_MOODLE_DIR="/usr/share/lliurex/llxcfg-moodle" case "$1" in remove|purge|abort-install|disappear) # Deletion of moodle site link directory [ -d $SITE_DIR ] && rm -f $SITE_DIR # Reverting changes of moodle cpkg llxcfg-cpkg deconfigure moodle || true AUXPATH="$(mktemp)" CRONPARSED="\/usr\/sbin\/llxcfg-moodle-cron" crontab -u www-data -l > $AUXPATH sed -i '/'$CRONPARSED'$/d' $AUXPATH crontab -u www-data $AUXPATH rm $AUXPATH || true ;; esac #DEBHELPER# exit 0