Changes in / [5fbec3d:8462239]
- Location:
- debian
- Files:
-
- 1 deleted
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
debian/bitlbee.init
r5fbec3d r8462239 41 41 chown bitlbee: /var/run/bitlbee.pid 42 42 43 start-stop-daemon --start --quiet --pidfile $PIDFILE \ 43 # Clean up after the bug between 1.2-5 and 1.2.1-2 where BitlBee ran 44 # as root. (#494656 and #495877) Fixing this in the postinst script 45 # is not enough since the user will restart his BitlBee after up- 46 # grading the package, and the BitlBee running as root will then 47 # save its settings, re-setting ownership of the file to root. 48 # TODO: Remove this after a few revisions. 49 find /var/lib/bitlbee -uid 0 -name '*.xml' -exec chown bitlbee: {} \; 50 51 start-stop-daemon --start --quiet \ 44 52 --exec $DAEMON -- -p $BITLBEE_PORT -P $PIDFILE $BITLBEE_OPTS 45 53 } -
debian/changelog
r5fbec3d r8462239 1 bitlbee (1.2.5-1) unstable; urgency=low2 3 * New upstream version.4 * Fixed issues with server-side MSN nickname corruption. (Closes: #538756)5 * Debconf translation fixes/additions. (Closes: #541754, #563504)6 7 -- Wilmer van der Gaast <wilmer@gaast.net> Wed, 17 Mar 2010 14:59:27 +00008 9 bitlbee (1.2.4-2) unstable; urgency=low10 11 * Merging in some changes from bzr-head:12 * Use libresolv.so where possible. (Closes: #551775)13 * Some include file changes that make the bitlbee-dev package useful again.14 15 -- Wilmer van der Gaast <wilmer@gaast.net> Thu, 19 Nov 2009 23:02:43 +000016 17 bitlbee (1.2.4-1) unstable; urgency=low18 19 * New upstream version.20 * Fixed issues with Yahoo! (Closes: #536178)21 22 -- Wilmer van der Gaast <wilmer@gaast.net> Sat, 17 Oct 2009 18:12:45 +010023 24 bitlbee (1.2.3-2) unstable; urgency=low25 26 * Fixed bitblee typo in prerm (introduced by NMU 1.2.1-1.1).27 (Closes: #531287)28 * Fixed bitlbee.deb dep in bitlbee-dev to deal with binary NMUs.29 (Closes: #531219)30 * Fixed free port detection code in debian/config which was a bit limited31 and also buggy.32 * Removing code that edits bitlbee.conf from postinst (and chown code in33 the init script), it's not really necessary anymore; bitlbee may only34 still run as root if the admin doesn't read conffile diffs.35 (Closes: #514572)36 * No longer overwriting port number info in /etc/default/bitlbee with37 what's in debconf. (Closes: #514148)38 * Added notes about the above two changes to bitlbee.conf.39 40 -- Wilmer van der Gaast <wilmer@gaast.net> Sun, 07 Jun 2009 21:17:39 +010041 42 bitlbee (1.2.3-1) unstable; urgency=critical43 44 * New upstream version.45 * Fixes another account hijacking issue. (Closes: #498159)46 * Restored --pidfile argument to start-stop-daemon, otherwise the init47 script fails to restart BitlBee when users are connected.48 49 -- Wilmer van der Gaast <wilmer@gaast.net> Sun, 07 Sep 2008 18:53:04 +010050 51 1 bitlbee (1.2.2-1) unstable; urgency=critical 52 2 -
debian/config
r5fbec3d r8462239 2 2 3 3 . /usr/share/debconf/confmodule 4 [ -f /etc/default/bitlbee ] && . /etc/default/bitlbee5 4 6 5 db_title BitlBee 7 6 8 if [ -n "$BITLBEE_PORT" ]; then 9 db_set bitlbee/serveport "$BITLBEE_PORT" 10 else 11 db_get bitlbee/serveport 12 if [ "$RET" = "stillhavetoask" ]; then 13 listens=$(netstat -ltn | awk '{print $4}') 14 for port in 6667 6666 6668 6669; do 15 if [ $(expr "$listens " : ".*:$port\s") = "0" ]; then 16 break 17 fi 18 done 19 db_set bitlbee/serveport $port; 7 db_get bitlbee/serveport 8 if [ "$RET" = "stillhavetoask" ]; then 9 if netstat -ltn | grep ':6667' 2> /dev/null > /dev/null; then 10 port=6668; 11 else 12 port=6667; 20 13 fi 14 db_set bitlbee/serveport $port; 21 15 fi 22 16 -
debian/control
r5fbec3d r8462239 19 19 Package: bitlbee-dev 20 20 Architecture: all 21 Depends: bitlbee ( >= ${source:Version}), bitlbee (<< ${source:Version}.1~)21 Depends: bitlbee (= ${binary:Version}) 22 22 Description: An IRC to other chat networks gateway 23 23 This program can be used as an IRC server which forwards everything you -
debian/patches/bitlbee.conf.diff
r5fbec3d r8462239 1 --- debian/bitlbee/etc/bitlbee/bitlbee.conf 2009-06-01 00:20:24.000000000 +0100 2 +++ debian/bitlbee/etc/bitlbee/bitlbee.conf 2009-06-07 21:16:19.000000000 +0100 3 @@ -23,13 +23,18 @@ 1 === modified file 'bitlbee.conf' 2 --- debian/bitlbee/etc/bitlbee/bitlbee.conf 2008-08-26 22:33:54 +0000 3 +++ debian/bitlbee/etc/bitlbee/bitlbee.conf 2008-08-27 23:18:13 +0000 4 @@ -23,7 +23,7 @@ 4 5 ## If BitlBee is started by root as a daemon, it can drop root privileges, 5 6 ## and change to the specified user. 6 7 ## 7 8 -# User = bitlbee 8 +## DEBIAN NOTE: Without this, BitlBee will run as root!9 +##10 9 +User = bitlbee 11 10 12 11 ## DaemonPort/DaemonInterface: 13 12 ## 14 ## For daemon mode, you can specify on what interface and port the daemon 15 ## should be listening for connections. 16 ## 17 +## DEBIAN NOTE: The init script passes the -p flag to use the port number 18 +## set using debconf, this overrides the DaemonPort setting here. 19 +## 20 # DaemonInterface = 0.0.0.0 21 # DaemonPort = 6667 22 13 -
debian/po/POTFILES.in
r5fbec3d r8462239 1 [type: gettext/rfc822deb] templates1 [type: gettext/rfc822deb] bitlbee.templates.master -
debian/postinst
r5fbec3d r8462239 33 33 ## /etc/default/bitlbee: Auto-generated/updated script. 34 34 ## 35 ## If running in (fork)daemon mode, listen on this TCP port.35 ## Don't edit this line, use dpkg-reconfigure bitlbee 36 36 BITLBEE_PORT="$PORT" 37 37 … … 61 61 else 62 62 mv /usr/share/bitlbee/help.upgrading /usr/share/bitlbee/help.txt 63 fi 64 fi 65 66 if ! grep -qi '^User *= *' /etc/bitlbee/bitlbee.conf; then 67 echo 'Updating configuration file, enabling User-setting...' 68 if ! sed -i -e 's/# *User *= *.*/User = bitlbee/i' /etc/bitlbee/bitlbee.conf; then 69 echo 'Failed! BitlBee may run as root now, please check your configs.' 63 70 fi 64 71 fi -
debian/prerm
r5fbec3d r8462239 11 11 else 12 12 if which invoke-rc.d >/dev/null 2>&1; then 13 invoke-rc.d bit lbee stop || exit 013 invoke-rc.d bitblee stop || exit 0 14 14 else 15 15 /etc/init.d/bitlbee stop || exit 0
Note: See TracChangeset
for help on using the changeset viewer.