postinst is in monkeysphere 0.36-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 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44  | #!/bin/sh
# postinst script for monkeysphere
# Author: Jameson Rollins <jrollins@finestructure.net>
# Copyright 2008-2010
set -e
VARLIB="/var/lib/monkeysphere"
case $1 in
    configure)
	# add a monkeysphere user if one does not already exist
	if ! getent passwd monkeysphere >/dev/null ; then
	    echo "adding monkeysphere user..."
	    adduser --quiet --system --no-create-home --group \
		--home "$VARLIB" \
		--shell '/bin/bash' \
		--gecos 'monkeysphere authentication user,,,' \
		monkeysphere
	fi
	# try all available transitions:
	for trans in 0.23 0.28 ; do
	    /usr/share/monkeysphere/transitions/$trans || { \
		RET=$?
		echo "Failed running transition script /usr/share/monkeysphere/transitions/$trans" >&2
		exit $RET
	    }
	done
	    
	# setup monkeysphere authentication
	monkeysphere-authentication setup
	;;
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
exit 0
 |