This file is indexed.

config is in jove 4.16.0.73-5.

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
#!/bin/sh

set -e

# We need debconf.
. /usr/share/debconf/confmodule

go=0

if [ -f /etc/jove.rc ]
then
  if [ ! -f /etc/jove/jove.rc ]
  then
    db_input high jove/upgradewarn-1 || true
    mkdir /etc/jove  
    mv /etc/jove.rc /etc/jove/jove.rc
  else
    db_input high jove/upgradewarn-2 || true
    mv /etc/jove.rc /etc/jove/jove.rc.old
  fi
fi

exit 0