blob: c02b13f41a5a8751479a619a1e613bcc2b3a95d7 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh -e
if [ "$1" = "upgrade" ]; then
## To prevent the help function from breaking in currently running BitlBee processes
rm -f /usr/share/bitlbee/help.txt
else
/etc/init.d/bitlbee stop || exit 0
fi
|