* debian/postinst, debian/postrm: LP: #1050249

- clean up obsolete config file
This commit is contained in:
Dustin Kirkland 2012-09-16 23:10:53 -05:00
commit bb3ac1ec81
3 changed files with 8 additions and 0 deletions

2
debian/changelog vendored
View file

@ -2,6 +2,8 @@ byobu (5.22) unreleased; urgency=low
* usr/bin/byobu-config, usr/bin/byobu-ctrl-a: LP: #1019743
- fix escape sequence setting in config with tmux
* debian/postinst, debian/postrm: LP: #1050249
- clean up obsolete config file
-- Dustin Kirkland <kirkland@ubuntu.com> Wed, 11 Jul 2012 12:02:34 -0500

3
debian/postinst vendored
View file

@ -43,6 +43,9 @@ if [ -d "$SOCKETDIR" ]; then
done
fi
# Clean-up obsolete config file
rm -f /etc/byobu/statusrc || true
#DEBHELPER#
# vi: syntax=sh ts=4 noexpandtab

3
debian/postrm vendored
View file

@ -6,4 +6,7 @@ PKG="byobu"
# symlink, if it exists
rm -f /etc/profile.d/Z98-$PKG.sh
# Clean-up obsolete config file
rm -f /etc/byobu/statusrc || true
# vi: syntax=sh ts=4 noexpandtab