Apache 1.x wird nicht mehr unterstützt
[kivitendo-erp.git] / DEBIAN / DEBIAN / postinst
1 #!/bin/bash
2 # postinst script for lx-office-erp-svn
3 #
4 # see: dh_installdeb(1)
5
6 # e = exit on error
7 set -e
8 # x = xtrace
9 #set -x
10
11 debugfile=$(mktemp /tmp/lx-erp.log.XXXXXX)
12 echo " ! "`date`" Postinst $1 !" >> $debugfile
13
14 source /usr/share/debconf/confmodule
15
16 # summary of how this script can be called:
17 #        * <postinst> `configure' <most-recently-configured-version>
18 #        * <old-postinst> `abort-upgrade' <new version>
19 #        * <conflictor's-postinst> `abort-remove' `in-favour' <package>
20 #          <new-version>
21 #        * <postinst> `abort-remove'
22 #        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
23 #          <failed-install-package> <version> `removing'
24 #          <conflicting-package> <version>
25 # for details, see http://www.debian.org/doc/debian-policy/ or
26 # the debian-policy package
27
28
29 config_postgresql_factory_script() {
30
31   echo "Starting factory postgresql config script: scripts/inst_postgres_deb.sh.."
32   cd /usr/lib/lx-office-erp/
33   ./scripts/inst_postgres_deb.sh
34   echo "Factory postgresql config script done."
35 }
36
37
38 set_lx_office_erp_web_admin_password() {
39   db_get lx-office-erp/admin-password
40   ADMINPASSWORD="$RET"
41
42   sed --in-place --expression "s/^admin_password.*=.*/admin_password = $ADMINPASSWORD/" /etc/lx-office-erp/lx_office.conf
43 }
44
45
46 set_lx_office_erp_authentication_db_user_password() {
47   db_get lx-office-erp/lx-office-erp-user-postgresql-password
48   PASSWORD="$RET"
49
50   sed --in-place --expression "s/^password.*=.*/password = $PASSWORD/" /etc/lx-office-erp/lx_office.conf
51   sed --in-place --expression "s/^user.*=.*postgres/user = lxoffice/g" /etc/lx-office-erp/lx_office.conf
52 }
53
54
55 set_user_rights() {
56   chown -R www-data:www-data /usr/lib/lx-office-erp/users
57   chown -R www-data:www-data /usr/lib/lx-office-erp/templates
58   chown www-data:www-data /etc/lx-office-erp/lx_office.conf
59   chown www-data:www-data /usr/lib/lx-office-erp/menu.ini
60   chmod 0600 /etc/lx-office-erp/lx_office.conf
61 }
62
63 mk_new_menu() {
64   if [ -e /usr/lib/lx-office-crm ] ; then
65         #crm vorhanden, dann die menu.ini mit der höchsten VersNr nehmen
66     for i in `ls -1 /usr/lib/lx-office-crm/update/menu*ini` ; do
67       cat $i > /usr/lib/lx-office-erp/menu.ini
68     done;
69     cat /usr/lib/lx-office-erp/menu.default >> /usr/lib/lx-office-erp/menu.ini
70   else
71     cp /usr/lib/lx-office-erp/menu.default /usr/lib/lx-office-erp/menu.ini
72   fi
73 }
74
75 mk_new_config() {
76   if ! [ -f /etc/lx-office-erp/lx_office.conf ] ; then
77     cp /etc/lx-office-erp/lx_office.conf.default /etc/lx-office-erp/lx_office.conf
78   fi
79 }
80
81 mk_links() {
82   for file in lx_office.conf lx_office.conf.default ; do
83     test -f /usr/lib/lx-office-erp/config/${file} || ln -s /etc/lx-office-erp/${file} /usr/lib/lx-office-erp/config/${file}
84   done
85   if [ -e /etc/apache2 ] ; then
86     if ! [ -f /etc/apache2/conf.d/lx-office-erp.apache2.conf ] ; then
87       ln -s /etc/lx-office-erp/lx-office-erp.apache2.conf /etc/apache2/conf.d/lx-office-erp.apache2.conf
88     fi;
89   fi;
90   if [ -e /etc/cherokee/sites-available ] ; then
91     if ! [ -f /etc/cherokee/sites-available/lx-office-erp.cherokee ] ; then
92       cat /etc/lx-office-erp/lx-office-erp.cherokee.handler >> /etc/cherokee/sites-available/default
93       ln -s /etc/lx-office-erp/lx-office-erp.cherokee /etc/cherokee/sites-available/lx-office-erp.cherokee
94     fi;
95   fi;
96   if [ -e /etc/lighttpd ] ; then
97     if ! [ -f /etc/lighttpd/conf-enabled/lx-office-erp.lighttpd ] ; then
98       ln -s /etc/lx-office-erp/lx-office-erp.lighttpd /etc/lighttpf/conf-enabled/10-lx-office-erp
99     fi;
100   fi;
101 }
102 reload_web_server() {
103   if [ -f /etc/init.d/apache* ] ; then
104     /etc/init.d/apache* reload
105   fi
106   if [ -f /etc/init.d/cherokee ] ; then
107     /etc/init.d/cherokee reload
108   fi
109   if [ -f /etc/init.d/lighttpd ] ; then
110     /etc/init.d/lighttpd reload
111   fi
112 }
113 case "$1" in
114
115   upgrade)
116     echo " ! "`date`" $1 !" >> $debugfile
117
118     VER=`cat /var/www/lx-office-erp/VERSION | cut -d '.' -f2`
119     if [ $VER = '6' ]; then
120       echo " ! 2.6 !" >> $debugfile
121       echo "Version 2.6.x"
122       mk_new_menu
123     else
124       mk_new_menu
125       mk_new_config
126       config_postgresql_factory_script
127       set_lx_office_erp_web_admin_password
128       set_lx_office_erp_authentication_db_user_password
129       mk_links
130     fi;
131
132     set_user_rights
133     reload_web_server
134     ;;
135
136   install|configure)
137     echo " ! "`date`" $1 !" >> $debugfile
138
139     mk_new_menu
140     mk_new_config
141     config_postgresql_factory_script
142     set_lx_office_erp_web_admin_password
143     set_lx_office_erp_authentication_db_user_password
144     mk_links
145
146     set_user_rights
147     reload_web_server
148
149     ;;
150
151   abort-upgrade|abort-remove|abort-deconfigure)
152     ;;
153
154   *)
155     echo "postinst called with unknown argument \`$1'" >&2
156     exit 1
157     ;;
158 esac
159
160 echo "done!!"
161
162 exit 0