source: debian/prerm @ 46d4230

1.2-4
Last change on this file since 46d4230 was 7448e1b, checked in by Wilmer van der Gaast <wilmer@…>, at 2007-10-22T22:39:46Z

debian/ specific: Changed "rm help.txt at upgrade" hack to not remove the
file but rename it and rename it back in postinst in case we were doing
a dpkg-reconfigure instead of an upgrade.

  • Property mode set to 100755
File size: 456 bytes
Line 
1#!/bin/sh -e
2
3if [ "$1" = "upgrade" ]; then
4        ## To prevent the help function from breaking in currently running
5        ## BitlBee processes. Have to do it like this because dpkg-reconfigure
6        ## looks a lot like an upgrade and we don't want to lose help.txt...
7        if [ -e /usr/share/bitlbee/help.txt ]; then
8                rm -f /usr/share/bitlbee/help.upgrading
9                mv /usr/share/bitlbee/help.txt /usr/share/bitlbee/help.upgrading
10        fi
11else
12        /etc/init.d/bitlbee stop || exit 0
13fi
Note: See TracBrowser for help on using the repository browser.