#!/bin/sh -e
# 
# Postinst file for ccal



set -e

case "$1" in
    configure)
    # Move a conffile without triggering a dpkg question
        if [ -e /etc/calcol ] && dpkg-maintscript-helper supports mv_conffile; then
            dpkg-maintscript-helper mv_conffile \
                /etc/calcol /etc/cal.col 3.5-7 ccal -- "$@"
        fi
         ;;
     abort-upgrade|abort-remove|abort-deconfigure)
         ;;
     *)
        echo "postinst called with unknown argument \`$1'" >&2
        exit 1
        ;;
esac

#DEBHELPER#


exit 0
