X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?p=clamav-cn.git;a=blobdiff_plain;f=debian%2Fpreinst;h=5f13bf9ff1a047c655bc6501b409f8944e89ed50;hp=619f781e6f5b4744300c5f69232a5d5ad86806e7;hb=ab406f2206ea019032119d312bbb3fcec6104bb5;hpb=04ad58ea32e978408c45d707f51ed4fe15922428 diff --git a/debian/preinst b/debian/preinst index 619f781..5f13bf9 100755 --- a/debian/preinst +++ b/debian/preinst @@ -13,11 +13,11 @@ rm_conffile() { local old_md5sum="$(dpkg-query -W -f='${Conffiles}' $PKGNAME | \ sed -n -e "\' $CONFFILE ' { s/ obsolete$//; s/.* //; p }")" if [ "$md5sum" != "$old_md5sum" ]; then - echo "Obsolete conffile $CONFFILE has been modified by you." - echo "Saving as $CONFFILE.dpkg-bak ..." + echo "CN: Obsolete conffile $CONFFILE has been modified by you." + echo "CN: Saving as $CONFFILE.dpkg-bak ..." mv -f "$CONFFILE" "$CONFFILE".dpkg-bak else - echo "Removing obsolete conffile $CONFFILE ..." + echo "CN: Removing obsolete conffile $CONFFILE ..." rm -f "$CONFFILE" fi }