#!/bin/bash set -e case "$1" in configure) if [ ! -f /etc/lliurex-moving-profiles.conf ]; then cp /usr/share/n4d-moving-profiles/lliurex-moving-profiles.conf /etc/ fi ;; abort-upgrade|abort-deconfigure|abort-remove) ;; *) echo "$0 called with unknown argument \`$1'" 1>&2 exit 1 ;; esac #DEBHELPER# exit 0