diff options
Diffstat (limited to 'ubuntu/maverick/metapackages/trinity-apt-archive/debian/postinst')
-rw-r--r-- | ubuntu/maverick/metapackages/trinity-apt-archive/debian/postinst | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/ubuntu/maverick/metapackages/trinity-apt-archive/debian/postinst b/ubuntu/maverick/metapackages/trinity-apt-archive/debian/postinst new file mode 100644 index 000000000..5bad16531 --- /dev/null +++ b/ubuntu/maverick/metapackages/trinity-apt-archive/debian/postinst @@ -0,0 +1,25 @@ +#!/bin/sh +# postinst script for trinity-apt-archive + +set -e + +case "$1" in + configure) + apt-get update + ;; + + remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 |