This file is indexed.

postrm is in virtuoso-opensource-6.1 6.1.4+dfsg1-0ubuntu1.

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
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/bin/bash

set -e

. /usr/share/debconf/confmodule

if [ -n "$DEBIAN_SCRIPT_DEBUG" ]; then set -v -x; DEBIAN_SCRIPT_TRACE=1; fi
${DEBIAN_SCRIPT_TRACE:+ echo "#42#DEBUG# RUNNING $0 $*" 1>&2 }

FILE_INI="/etc/virtuoso-opensource-6.1/virtuoso.ini"
FILE_ODBC_DSN="/usr/share/virtuoso-opensource-6.1/odbc.ini"

if [ "$1" == "purge" ]; then
	# log files can go without warning...
	rm -rf /var/log/virtuoso-opensource-6.1

	# ...but get explicit confirmation before removing databases
  db_input high virtuoso-opensource-6.1/check-remove-databases || true
  db_go || true
  db_get virtuoso-opensource-6.1/check-remove-databases || true
  if [ "$RET" == "true" ]; then
    rm -rf /var/lib/virtuoso-opensource-6.1
  fi

  rm -f $FILE_INI
  rm -f $FILE_ODBC_DSN

	update-rc.d virtuoso-opensource-6.1 remove >/dev/null || exit $?
fi

# Automatically added by dh_installdebconf
if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then
	. /usr/share/debconf/confmodule
	db_purge
fi
# End automatically added section