From: Mark Huang Date: Mon, 10 Jul 2006 21:08:06 +0000 (+0000) Subject: - generate old /etc/planetlab/plc_db file here X-Git-Tag: planetlab-4_0-rc1~149 X-Git-Url: http://git.onelab.eu/?p=myplc.git;a=commitdiff_plain;h=c1ab1d87044b2859a9dd1d6419e2c9a14f2dae24 - generate old /etc/planetlab/plc_db file here - set default maint password and ip sources here --- diff --git a/plc.d/api b/plc.d/api index 7f90de6..08d58c2 100755 --- a/plc.d/api +++ b/plc.d/api @@ -8,7 +8,7 @@ # Mark Huang # Copyright (C) 2006 The Trustees of Princeton University # -# $Id: api,v 1.3 2006/04/25 21:18:19 mlhuang Exp $ +# $Id: api,v 1.4 2006/06/23 21:41:31 mlhuang Exp $ # # Source function library and configuration @@ -27,6 +27,27 @@ case "$1" in MESSAGE=$"Configuring the API" dialog "$MESSAGE" + # Generate old DB configuration file + ln -sf plc_config /etc/planetlab/plc_db + + # Make sure that the API maintenance account is protected by a + # password. + if [ -z "$PLC_API_MAINTENANCE_PASSWORD" ] ; then + PLC_API_MAINTENANCE_PASSWORD=$(uuidgen) + plc-config --category=plc_api --variable=maintenance_password --value="$PLC_API_MAINTENANCE_PASSWORD" --save + fi + + # Make sure that all PLC servers are allowed to access the API + # through the maintenance account. + PLC_API_MAINTENANCE_SOURCES=$( + for server in API BOOT WWW ; do + hostname=PLC_${server}_HOST + gethostbyname ${!hostname} + done | sort -u + ) + plc-config --category=plc_api --variable=maintenance_sources --value="$PLC_API_MAINTENANCE_SOURCES" --save + + # Generate old API configuration file api-config check