#!/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 ;; esac #DEBHELPER# exit 0