Changeset 59c84c2
- Timestamp:
- 2008-08-11T23:25:40Z (16 years ago)
- Branches:
- master
- Children:
- 5d3b4e8
- Parents:
- 45b9d3e
- Location:
- debian
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
debian/changelog
r45b9d3e r59c84c2 1 bitlbee (1.2.1-1.1) unstable; urgency=low 2 3 * Non-Maintainer Upload 4 * Use invoke-rc.d as per policy. (Closes: #492637) [Thanks to Matt 5 Kraii] 6 7 -- Don Armstrong <don@debian.org> Wed, 06 Aug 2008 06:57:18 -0700 8 1 9 bitlbee (1.2.1-1) unstable; urgency=low 2 10 -
debian/postinst
r45b9d3e r59c84c2 65 65 66 66 if [ -n "$2" -a "$BITLBEE_UPGRADE_DONT_RESTART" != "1" ]; then 67 /etc/init.d/bitlbee restart 67 if which invoke-rc.d >/dev/null 2>&1; then 68 invoke-rc.d bitlbee restart 69 else 70 /etc/init.d/bitlbee restart 71 fi 68 72 fi 69 73 … … 91 95 92 96 if [ -z "$2" ]; then 93 /etc/init.d/bitlbee start 97 if which invoke-rc.d >/dev/null 2>&1; then 98 invoke-rc.d bitlbee start 99 else 100 /etc/init.d/bitlbee start 101 fi 94 102 fi -
debian/prerm
r45b9d3e r59c84c2 10 10 fi 11 11 else 12 /etc/init.d/bitlbee stop || exit 0 12 if which invoke-rc.d >/dev/null 2>&1; then 13 invoke-rc.d bitblee stop || exit 0 14 else 15 /etc/init.d/bitlbee stop || exit 0 16 fi 13 17 fi
Note: See TracChangeset
for help on using the changeset viewer.