blob: 173a4b372d32e616ccbddc8f6a1757f248d3b48a (
plain)
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
|
#!/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 'keystone-manage db_sync' keystone
fi
;;
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.
#DEBHELPER#
exit 0
|