This file is indexed.

postrm is in python3-gnocchi 4.2.0-0ubuntu5.

This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
#!/bin/sh

set -e

if [ "$1" = "remove" ] || [ "$1" = "disappear" ] ; then
	update-alternatives --remove gnocchi-api /usr/bin/python3-gnocchi-api
	update-alternatives --remove gnocchi-change-sack-size /usr/bin/python3-gnocchi-change-sack-size
	update-alternatives --remove gnocchi-config-generator /usr/bin/python3-gnocchi-config-generator
	update-alternatives --remove gnocchi-metricd /usr/bin/python3-gnocchi-metricd
	update-alternatives --remove gnocchi-statsd /usr/bin/python3-gnocchi-statsd
	update-alternatives --remove gnocchi-upgrade /usr/bin/python3-gnocchi-upgrade
fi



exit 0