summaryrefslogtreecommitdiffstats
path: root/debian/open-infrastructure-container-tools.preinst
blob: b2878fae7444cde190f26030faf0574d52741d48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh

set -e

case "${1}" in
	install|upgrade)
		# procps: uptime
		dpkg-divert --package open-infrastructure-container-tools --quiet --add --rename --divert /usr/bin/uptime.orig.procps /usr/bin/uptime
		dpkg-divert --package open-infrastructure-container-tools --quiet --add --rename --divert /usr/share/man/man1/uptime.orig.procps.1.gz /usr/share/man/man1/uptime.1.gz
		;;

	abort-upgrade)

		;;

	*)
		echo "preinst called with unknown argument \`$1'" >&2
		exit 1
		;;
esac

#DEBHELPER#

exit 0