configure resolv.conf and hosts files for dnsmasq
[myplc.git] / plc.d / postgresql
1 #!/bin/bash
2 #
3 # priority: 300
4 #
5 # Manage the PostgreSQL database server
6 #
7 # Mark Huang <mlhuang@cs.princeton.edu>
8 # Copyright (C) 2006 The Trustees of Princeton University
9 #
10 # $Id$
11 #
12
13 # Source function library and configuration
14 . /etc/plc.d/functions
15 . /etc/planetlab/plc_config
16 local_config=/etc/planetlab/configs/site.xml
17
18 # Be verbose
19 set -x
20
21 # Default locations
22 PGDATA=/var/lib/pgsql/data
23 postgresql_conf=$PGDATA/postgresql.conf
24 pghba_conf=$PGDATA/pg_hba.conf
25
26 # Export so that we do not have to specify -p to psql invocations
27 export PGPORT=$PLC_DB_PORT
28
29 # /etc/init.d/postgresql always returns 0, even on failure
30 postgresql_start ()
31 {
32     # start() always returns 0
33     (exec 3>&- 4>&- ; service postgresql start)
34
35     # status() will still return 0 even while still initializing
36     if status postmaster && [ -f /var/lock/subsys/postgresql ] ; then
37         # The only way we can be sure is if we can access it
38         for i in $(seq 1 10) ; do
39             # Must do this as the postgres user initially (before we
40             # fix pg_hba.conf to passwordless localhost access).
41             su -c 'psql -U postgres -c "" template1' postgres && return 0
42             sleep 1
43         done
44     fi
45
46     return 1
47 }
48
49 postgresql_init ()
50 {
51     service postgresql initdb &> /dev/null || :
52     postgresql_start
53 }
54
55 case "$1" in
56     start)
57         if [ "$PLC_DB_ENABLED" != "1" ] ; then
58             exit 0
59         fi
60
61         MESSAGE=$"Starting database server"
62         dialog "$MESSAGE"
63
64         # Set data directory and redirect startup output to /var/log/pgsql
65         mkdir -p /etc/sysconfig/pgsql
66         (
67             echo "PGDATA=$PGDATA"
68             echo "PGLOG=/var/log/pgsql"
69             echo "PGPORT=$PLC_DB_PORT"
70         ) >>/etc/sysconfig/pgsql/postgresql
71
72         # Fix ownership (rpm installation may have changed it)
73         chown -R -H postgres:postgres $(dirname $PGDATA)
74
75         # PostgreSQL must be started at least once to bootstrap
76         # /var/lib/pgsql/data
77         if [ ! -f $postgresql_conf ] ; then
78             postgresql_init
79             check
80             service postgresql stop
81             check
82         fi
83
84         # Enable DB server. PostgreSQL >=8.0 defines listen_addresses,
85         # PostgreSQL 7.x uses tcpip_socket.
86         if grep -q listen_addresses $postgresql_conf ; then
87             sed -i -e '/^listen_addresses/d' $postgresql_conf
88             echo "listen_addresses = '*'" >>$postgresql_conf
89         elif grep -q tcpip_socket $postgresql_conf ; then
90             sed -i -e '/^tcpip_socket/d' $postgresql_conf
91             echo "tcpip_socket = true" >>$postgresql_conf
92         fi
93
94         # Disable access to all DBs from all hosts
95         sed -i -e '/^\(host\|local\)/d' $pghba_conf
96
97         # Enable passwordless localhost access
98         echo "local all all trust" >>$pghba_conf
99
100         # Enable access from the API, boot, and web servers
101         PLC_API_IP=$(gethostbyname $PLC_API_HOST)
102         PLC_BOOT_IP=$(gethostbyname $PLC_BOOT_HOST)
103         PLC_WWW_IP=$(gethostbyname $PLC_WWW_HOST)
104         (
105             echo "host $PLC_DB_NAME $PLC_DB_USER 127.0.0.1/32 password"
106             echo "host $PLC_DB_NAME $PLC_DB_USER $PLC_API_IP/32 password"
107             echo "host $PLC_DB_NAME $PLC_DB_USER $PLC_BOOT_IP/32 password"
108             echo "host $PLC_DB_NAME $PLC_DB_USER $PLC_WWW_IP/32 password"
109             # Drupal also uses PostgreSQL
110             echo "host drupal $PLC_DB_USER 127.0.0.1/32 password"
111             echo "host drupal $PLC_DB_USER $PLC_WWW_IP/32 password"
112         ) >>$pghba_conf
113
114         # Append site-specific access rules
115         for file in $pghba_conf.d/*.conf ; do
116             cat "$file" >>$pghba_conf
117         done
118
119         # Fix ownership (sed -i changes it)
120         chown postgres:postgres $postgresql_conf $pghba_conf
121
122         # Start up the server
123         postgresql_start
124         check
125
126         # Create/update the unprivileged database user and password
127         if [ -z "$PLC_DB_PASSWORD" ] ; then
128             PLC_DB_PASSWORD=$(uuidgen)
129             plc-config --category=plc_db --variable=password --value="$PLC_DB_PASSWORD" --save=$local_config $local_config
130             service plc reload
131         fi
132         if ! psql -U $PLC_DB_USER -c "" template1 >/dev/null 2>&1 ; then
133             psql -U postgres -c "CREATE USER $PLC_DB_USER PASSWORD '$PLC_DB_PASSWORD'" template1
134         else
135             psql -U postgres -c "ALTER USER $PLC_DB_USER WITH PASSWORD '$PLC_DB_PASSWORD'" template1
136         fi
137         check
138
139         # Create the databases if necessary
140         if ! psql -U $PLC_DB_USER -c "" $PLC_DB_NAME >/dev/null 2>&1 ; then
141             createdb -U postgres --encoding=UNICODE --owner=$PLC_DB_USER $PLC_DB_NAME
142             psql -U $PLC_DB_USER -f /usr/share/plc_api/$PLC_DB_NAME.sql $PLC_DB_NAME
143         fi
144         check
145         if ! psql -U $PLC_DB_USER -c "" drupal >/dev/null 2>&1 ; then
146             createdb -U postgres --encoding=UNICODE --owner=$PLC_DB_USER drupal
147             psql -U $PLC_DB_USER -f /var/www/html/database/database.pgsql drupal
148         fi
149         check
150
151         result "$MESSAGE"
152         ;;
153
154     stop)
155         MESSAGE=$"Stopping database server"
156         dialog "$MESSAGE"
157
158         # Drop the current user in case the username changes
159         psql -U postgres -c "DROP USER $PLC_DB_USER" template1
160
161         # WARNING: If the DB name changes, the old DB will be left
162         # intact and a new one will be created. If it changes
163         # back, the old DB will not be re-created.
164
165         # Shut down the server
166         service postgresql stop
167
168         # /etc/init.d/postgresql fails if it is not running
169         [ "$PLC_DB_ENABLED" = 1 ] && check
170
171         result "$MESSAGE"
172         ;;
173 esac
174
175 exit $ERRORS