Ubuntu Pastebin

Paste from elopio at Mon, 22 Jun 2015 14:58:53 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/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
Download as text