This file is indexed.

postinst is in phonefsod 0.1+git20110827-3.

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
#!/bin/sh
set -e
# Automatically added by dh_installinit
if [ -x "/etc/init.d/phonefsod" ]; then
	update-rc.d phonefsod defaults >/dev/null
	invoke-rc.d phonefsod start || exit $?
fi
# End automatically added section