This file is indexed.

postinst is in omega-rpg 1:0.90-pa9-16.

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

# Copy the default highscore/log files if there are non present.
if [ "$1" = "configure" ]; then
	if [ ! -f /var/games/omega-rpg/omega.hi ]; then
		cp -a /usr/share/games/omega-rpg/omega.hi /var/games/omega-rpg/omega.hi
                chgrp games /var/games/omega-rpg/omega.hi
                chmod g+w /var/games/omega-rpg/omega.hi
	fi
	if [ ! -f /var/games/omega-rpg/omega.log ]; then
		cp -a /usr/share/games/omega-rpg/omega.log /var/games/omega-rpg/omega.log
                chgrp games /var/games/omega-rpg/omega.log
                chmod g+w /var/games/omega-rpg/omega.log
	fi
fi