]> git.donarmstrong.com Git - debhelper.git/blob - autoscripts/postinst-moveconffile
Updated French man page translation. Closes: #685560
[debhelper.git] / autoscripts / postinst-moveconffile
1 if [ "$1" = configure ]; then
2         if [ -e "#OLD#" ]; then
3                 echo "Preserving user changes to #NEW# ..."
4                 if [ -e "#NEW#" ]; then
5                         mv -f "#NEW#" "#NEW#.dpkg-new"
6                 fi
7                 mv -f "#OLD#" "#NEW#"
8         fi
9 fi