* debian/postrm: LP: #996873

- at package removal, ensure that we remove the auto-launch symlink
    if it exists
This commit is contained in:
Dustin Kirkland 2012-06-24 13:49:09 -05:00
commit 6841da6431
2 changed files with 12 additions and 0 deletions

3
debian/changelog vendored
View file

@ -12,6 +12,9 @@ byobu (5.20) unreleased; urgency=low
- fix some lintian warnings and errors - fix some lintian warnings and errors
* usr/lib/byobu/raid: LP: #1006971 * usr/lib/byobu/raid: LP: #1006971
- ensure raid status cache gets cleared out when done rebuilding - ensure raid status cache gets cleared out when done rebuilding
* debian/postrm: LP: #996873
- at package removal, ensure that we remove the auto-launch symlink
if it exists
-- Dustin Kirkland <kirkland@ubuntu.com> Fri, 08 Jun 2012 17:25:23 -0500 -- Dustin Kirkland <kirkland@ubuntu.com> Fri, 08 Jun 2012 17:25:23 -0500

9
debian/postrm vendored Normal file
View file

@ -0,0 +1,9 @@
#!/bin/sh -e
PKG="byobu"
# If removing Byobu, ensure that we clean up this launch-by-default
# symlink, if it exists
rm -f /etc/profile.d/Z98-$PKG.sh
# vi: syntax=sh ts=4 noexpandtab