#!/bin/sh
confdir=/etc/golang
conffile=$confdir/goinstall.conf
set -e
. /usr/share/debconf/confmodule
# Cleanup old debconf dashboard question that was removed in golang-go 2:1.1
# -- 2013-05-14 stapelberg
db_purge
case "$1" in
configure)
# Remove obsolete goinstall.conf.
# -- 2013-05-14 stapelberg
if [ -e $conffile ]; then
rm -f $conffile
rmdir /etc/golang || true
fi
if [ -n "$2" ] && dpkg --compare-versions "$2" le 2:1.3.3-1ubuntu2; then
update-alternatives --remove go /usr/bin/golang-go
fi
if [ -f /usr/bin/golang-go ]; then
update-alternatives \
--install /usr/bin/go go /usr/bin/golang-go 100 \
--slave /usr/bin/gofmt gofmt /usr/bin/golang-gofmt
# Very ugly hack to set timestamps same as /usr/bin/golang-go
find /usr/lib/go/pkg -exec touch -r /usr/bin/golang-go {} \;
touch --no-dereference -r /usr/bin/golang-go /usr/bin/go
fi
;;
*)
;;
esac