#!/bin/sh # # preinst script for sympa # set -e case "$1" in install|upgrade) if dpkg --compare-versions "$2" "lt" "6.1.22~dfsg-1"; then # delete sympa facility before managing it as a conffile (#774877) rm -f /etc/sympa/facility fi ;; esac # Automatically added by dh_installdeb/13.5.2 dpkg-maintscript-helper rm_conffile /etc/sympa/sympa/sympa.conf 6.2.16\~dfsg-2\~ -- "$@" dpkg-maintscript-helper rm_conffile /etc/sympa/sympa.conf-smime.in 6.2.16\~dfsg-4\~ -- "$@" # End automatically added section exit 0