#!/bin/sh set -e SITE_DIR="/var/www/lliurex/moodle" LLXCFG_MOODLE_DIR="/usr/share/lliurex/llxcfg-moodle" # --------- case "$1" in configure) # moodle site link if [ ! -d $SITE_DIR ] ; then ln -s $LLXCFG_MOODLE_DIR $SITE_DIR fi ;; esac #DEBHELPER# exit 0