#!/bin/sh
set -e

. /usr/share/debconf/confmodule

if [ "$1" = "configure" ]; then
    update-rc.d elida start 20 2 3 4 5 . stop 20 0 1 6 . start 44 S . >/dev/null
#   if [ ! -d /usr/src/elida ]; then
#       mkdir /usr/src/elida
#       chmod 2775 /usr/src/elida
#       chgrp src /usr/src/elida
#   fi
fi

exit 0 
