X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=plc.d%2Fpostgresql;fp=plc.d%2Fpostgresql;h=0a1bf5acf997948bd6f8b2b679d4fec5bc31d63c;hb=55a2e99670646aa2dcb2c3d3ca496ef94a4585ba;hp=c16f152affa2acb6a8784aa1fa5af2faf2f91a55;hpb=e432974c3c8ef648782172d855d20cb6d51ed5ae;p=myplc.git diff --git a/plc.d/postgresql b/plc.d/postgresql index c16f152..0a1bf5a 100755 --- a/plc.d/postgresql +++ b/plc.d/postgresql @@ -7,7 +7,7 @@ # Mark Huang # Copyright (C) 2006 The Trustees of Princeton University # -# $Id: postgresql,v 1.9 2007/01/19 16:42:08 mlhuang Exp $ +# $Id: postgresql,v 1.10 2007/01/19 17:25:27 mlhuang Exp $ # # Source function library and configuration @@ -90,12 +90,14 @@ case "$1" in # Enable passwordless localhost access echo "local all all trust" >>$pghba_conf - # Enable access from the API and web servers + # Enable access from the API, boot, and web servers PLC_API_IP=$(gethostbyname $PLC_API_HOST) + PLC_BOOT_IP=$(gethostbyname $PLC_BOOT_HOST) PLC_WWW_IP=$(gethostbyname $PLC_WWW_HOST) ( echo "host $PLC_DB_NAME $PLC_DB_USER 127.0.0.1/32 password" echo "host $PLC_DB_NAME $PLC_DB_USER $PLC_API_IP/32 password" + echo "host $PLC_DB_NAME $PLC_DB_USER $PLC_BOOT_IP/32 password" echo "host $PLC_DB_NAME $PLC_DB_USER $PLC_WWW_IP/32 password" # Drupal also uses PostgreSQL echo "host drupal $PLC_DB_USER 127.0.0.1/32 password"