Changeset fcd5003
- Timestamp:
- 2008-03-23T21:53:53Z (17 years ago)
- Branches:
- master
- Children:
- 58a1449
- Parents:
- dd14ecc
- Location:
- debian
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
debian/README.Debian
rdd14ecc rfcd5003 7 7 should be necessary only once, it won't be touched during upgrades. 8 8 9 -------------------------------------------------------------------------- 9 Another important change in BitlBee 1.2 is the file format used for your 10 personal settings. Everything's now saved in a single .xml (per account, 11 of course) file instead of $nick.accounts and $nick.nicks. One advantage 12 of this new format is that the passwords are actually encrypted instead of 13 just vaguely obfuscated. BitlBee can still read the old files, and will 14 save things in the new format when you save/disconnect. After that, you 15 can safely remove the old-style files (this is recommended). 16 17 I tried making this transition (the new file format but especially, in this 18 case, the inetd->forkdaemon mode change) as smooth as possible, but I'm 19 aware that many BitlBee users will have their own hacks already to run the 20 program. I hope the package won't break any of this for anyone. 1.2-2 21 should fix at least some of the issues. 22 23 --------------------------------------------------------------------------- 10 24 11 25 Debconf should have asked you on what port you want BitlBee to run. If it -
debian/changelog
rdd14ecc rfcd5003 1 bitlbee (1.2-2) unstable; urgency=low 2 3 * Fixed some packaging issues reported by IRC and e-mail. (Closes: #472373) 4 * Not ready yet. 5 6 -- Wilmer van der Gaast <wilmer@gaast.net> Sun, 23 Mar 2008 21:51:57 +0000 7 1 8 bitlbee (1.2-1) unstable; urgency=low 2 9 -
debian/conffiles
rdd14ecc rfcd5003 1 1 /etc/bitlbee/motd.txt 2 2 /etc/bitlbee/bitlbee.conf 3 /etc/init.d/bitlbee -
debian/postinst
rdd14ecc rfcd5003 14 14 BITLBEE_DISABLED=0 15 15 BITLBEE_UPGRADE_DONT_RESTART=0 16 [ -r /etc/default/bitlbee ] && source/etc/default/bitlbee16 [ -r /etc/default/bitlbee ] && . /etc/default/bitlbee 17 17 18 if [ "$BITLBEE_DISABLED" = "0" ] && expr "$2" : '0\..*' > /dev/null || expr "$2" : '1\.0\..*' > /dev/null; then 19 ## In case it's still there (if we're upgrading right now) 18 if [ "$BITLBEE_DISABLED" = "0" ] && type update-inetd > /dev/null 2> /dev/null && 19 ( expr "$2" : '0\..*' > /dev/null || expr "$2" : '1\.0\..*' > /dev/null ); then 20 ## Make sure the inetd entry is gone (can still be there from a 21 ## previous version. 20 22 update-inetd --remove '.*/usr/sbin/bitlbee' 21 23 if grep -q /usr/sbin/bitlbee /etc/inetd.conf 2> /dev/null; then … … 24 26 # emergency hack doesn't: 25 27 perl -pi -e 's:^[^#].*/usr/sbin/bitlbee$:## Now using daemon mode\: # $&:' /etc/inetd.conf 26 killall -HUP inetd 28 killall -HUP inetd || true 27 29 fi 28 30 fi
Note: See TracChangeset
for help on using the changeset viewer.