From 41998645c04a2ee856dec272b40c2dc5913291d3 Mon Sep 17 00:00:00 2001 From: Bdale Garbee Date: Thu, 25 Aug 2011 02:16:17 -0600 Subject: [PATCH] add a postinst to remove sources.list.d fragment delivered by old private versions of this package, no longer needed once we have official packages --- debian/altos.postinst | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 debian/altos.postinst 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# + -- 2.30.2