This file is indexed.

postinst is in keystone 1:2014.1.3-0ubuntu2.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
45
46
47
48
49
50
51
#!/bin/sh

set -e


# summary of how this script can be called:
#        * <new-preinst> `install'
#        * <new-preinst> `install' <old-version>
#        * <new-preinst> `upgrade' <old-version>
#        * <old-preinst> `abort-upgrade' <new-versio

case "$1" in
	install)
		;;
	upgrade)
		# Re-enable this when database comes back - cs
		#su -s /bin/sh -c 'exec keystone database sync' keystone
		;;
	configure)
		if grep -q "^connection.*sqlite.*" /etc/keystone/keystone.conf
		then
			su -s /bin/sh -c 'exec keystone-manage db_sync' keystone
		fi
		su -s /bin/sh -c 'exec keystone-manage pki_setup' keystone
		;;
	abort-upgrade)
		echo "aport upgrade called"
		;;
	*)
		echo "postinst called with unknown argument \`$1'" >&2
		exit 0
		;;
esac

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

# Automatically added by dh_installinit
if [ -x "/etc/init.d/keystone" ] || [ -e "/etc/init/keystone.conf" ]; then
	if [ ! -e "/etc/init/keystone.conf" ]; then
		update-rc.d keystone defaults >/dev/null
	fi
	invoke-rc.d keystone start || exit $?
fi
# End automatically added section
# Automatically added by dh_installinit
update-rc.d -f keystone remove >/dev/null || exit $?
# End automatically added section


exit 0