This file is indexed.

postinst is in sawfish-merlin-ugliness 1.3.1-1.

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

# move old conffiles in < 0.36.9-1

if [ -e /etc/X11/sawfish/merlin.jl ]; then
  mv /etc/X11/sawfish/merlin.jl /etc/X11/sawfish/site-init.d
fi

if [ -e /etc/X11/sawfish/site-init.d/merlin.jl ]; then
  rm /etc/X11/sawfish/site-init.d/merlin.jl
fi



exit 0