cannot run db-config in api script, since the password is being setup manually here
[myplc.git] / plc.d / api
1 #!/bin/bash
2 #
3 # priority: 450
4 #
5 # Configure the API. Must be done after SSL certificates are generated
6 # and before the API web server is brought up.
7 #
8 # Mark Huang <mlhuang@cs.princeton.edu>
9 # Copyright (C) 2006 The Trustees of Princeton University
10 #
11 # $Id: api,v 1.8 2007/01/19 20:05:05 mlhuang Exp $
12 #
13
14 # Source function library and configuration
15 . /etc/plc.d/functions
16 . /etc/planetlab/plc_config
17
18 # Be verbose
19 set -x
20
21 case "$1" in
22     start)
23         if [ "$PLC_API_ENABLED" != "1" ] ; then
24             exit 0
25         fi
26
27         MESSAGE=$"Configuring the API"
28         dialog "$MESSAGE"
29
30         # Make sure that the API maintenance account is protected by a
31         # password.
32         if [ -z "$PLC_API_MAINTENANCE_PASSWORD" ] ; then
33             PLC_API_MAINTENANCE_PASSWORD=$(uuidgen)
34             plc-config --category=plc_api --variable=maintenance_password --value="$PLC_API_MAINTENANCE_PASSWORD" --save
35         fi
36
37         # Make sure that all PLC servers are allowed to access the API
38         # through the maintenance account.
39         PLC_API_MAINTENANCE_SOURCES=($((
40             for ip in $PLC_API_MAINTENANCE_SOURCES ; do
41                 echo $ip
42             done
43             for server in API BOOT WWW ; do
44                 hostname=PLC_${server}_HOST
45                 gethostbyname ${!hostname}
46             done
47         ) | sort -u))
48         PLC_API_MAINTENANCE_SOURCES=${PLC_API_MAINTENANCE_SOURCES[*]}
49         plc-config --category=plc_api --variable=maintenance_sources --value="$PLC_API_MAINTENANCE_SOURCES" --save
50
51         result "$MESSAGE"
52         ;;
53 esac
54
55 exit $ERRORS