diff options
author | Bdale Garbee <bdale@gag.com> | 2011-08-25 02:16:17 -0600 |
---|---|---|
committer | Bdale Garbee <bdale@gag.com> | 2011-08-25 02:16:17 -0600 |
commit | 41998645c04a2ee856dec272b40c2dc5913291d3 (patch) | |
tree | af6b3d599f56b39f8d8d18fc7b6e80c19efaa0d7 /debian | |
parent | d65e4f6b0a8ba8f67c8a916f2e8be0ec5c75f47d (diff) |
add a postinst to remove sources.list.d fragment delivered by old private1.0
versions of this package, no longer needed once we have official packages
Diffstat (limited to 'debian')
-rw-r--r-- | debian/altos.postinst | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/debian/altos.postinst b/debian/altos.postinst new file mode 100644 index 00000000..2ef9a686 --- /dev/null +++ b/debian/altos.postinst @@ -0,0 +1,9 @@ +#!/bin/sh +set -e + +test "$1" = 'configure' || exit 0 + +rm -f /etc/apt/sources.list.d/altos.list + +#DEBHELPER# + |