summaryrefslogtreecommitdiffstats
path: root/debian/linux-perf.postrm
blob: 84a6e3df5ba47b933397f0bfec5195c7ab03f586 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh

set -e

old_version_suffix="$(echo "$2" | sed -rn 's/^([0-9]+\.[0-9]+).*/\1/p')"
if [ "$old_version_suffix" ]; then
    dpkg-maintscript-helper symlink_to_dir \
	/usr/share/doc/linux-perf "linux-perf-${old_version_suffix}" 5.16\~rc8-1\~exp1 linux-perf -- "$@"
fi

if [ "$1" = remove ]
then
	for wrapper in /usr/bin/perf \
		       /usr/share/bash-completion/completions/perf \
		       /usr/share/man/man1/perf.1.gz; do
	    diversion="${wrapper%/perf*}/perf.wrapper${wrapper#*/perf}"
	    dpkg-divert --package linux-perf --divert "$diversion" --rename \
		--remove "$wrapper"
	done
fi

#DEBHELPER#