File: iputils-tracepath.postinst

package info (click to toggle)
iputils 3%3A20101006-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,944 kB
  • sloc: ansic: 8,451; perl: 585; makefile: 170; sh: 37
file content (13 lines) | stat: -rw-r--r-- 285 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -e

if [ "$1" = configure ]; then
	update-alternatives \
		--install /usr/bin/traceroute6 traceroute6 /usr/bin/traceroute6.iputils 100 \
		--slave /usr/share/man/man8/traceroute6.8.gz traceroute6.8.gz /usr/share/man/man8/traceroute6.iputils.8.gz
fi

#DEBHELPER#

exit 0