FIT IoT-Lab aggregate: fixed archi and radio format
[sfa.git] / init.d / sfa
index d5b0bb4..d77a58d 100755 (executable)
@@ -6,8 +6,14 @@
 # hopefully right after plc
 # chkconfig: 2345 61 39
 #
-# description:   An implementation  of the SFA Architecture
-#
+### BEGIN INIT INFO
+# Provides:            sfa
+# Required-Start:      postgresql 
+# Required-Stop:       postgresql 
+# Default-Start:       2 3 4 5
+# Default-Stop:                0 1 6
+# Short-Description:   An implementation  of the SFA Architecture
+### END INIT INFO
 
 ####################
 # borrowed from postgresql
@@ -30,6 +36,7 @@ function debian_get_postgresql_versions () {
 }
 
 ####################
+POSTGRESQL_STARTED=/etc/sfa/postgresql-started
 if [ -f /etc/redhat-release ] ; then
     # source function library
     . /etc/init.d/functions
@@ -51,7 +58,7 @@ fi
 
 
 postgresql_conf=$PGDATA/postgresql.conf
-pghba_conf=$PGDATA/pg_hba.conf
+pg_hba_conf=$PGDATA/pg_hba.conf
 postgresql_sysconfig=/etc/sysconfig/pgsql
 
 # SFA consolidated (merged) config file
@@ -160,94 +167,81 @@ function db_start () {
     # only if enabled
     [ "$SFA_DB_ENABLED" == 1 -o "$SFA_DB_ENABLED" == True ] || return
 
-    if ! rpm -q myplc >& /dev/null; then
-
-       ######## standalone deployment - no colocated myplc
-
-       ######## sysconfig 
-       # Set data directory and redirect startup output to /var/log/pgsql
-       mkdir -p $(dirname $postgresql_sysconfig)
-       # remove previous definitions
-       touch $postgresql_sysconfig
-       tmp=${postgresql_sysconfig}.new
-       ( egrep -v '^(PGDATA=|PGLOG=|PGPORT=)' $postgresql_sysconfig 
-           echo "PGDATA=$PGDATA"
-           echo "PGLOG=/var/log/pgsql"
-           echo "PGPORT=$SFA_DB_PORT"
-       ) >> $tmp ; mv -f $tmp $postgresql_sysconfig
-
-       ######## /var/lib/pgsql/data 
-       # Fix ownership (rpm installation may have changed it)
-       chown -R -H postgres:postgres $(dirname $PGDATA)
-
-       # PostgreSQL must be started at least once to bootstrap
-       # /var/lib/pgsql/data
-       if [ ! -f $postgresql_conf ] ; then
-           service postgresql initdb &> /dev/null || :
-           check
-       fi
+    ######## sysconfig 
+    # Set data directory and redirect startup output to /var/log/pgsql
+    mkdir -p $(dirname $postgresql_sysconfig)
+    # remove previous definitions
+    touch $postgresql_sysconfig
+    tmp=${postgresql_sysconfig}.new
+    ( egrep -v '^(PGDATA=|PGLOG=|PGPORT=)' $postgresql_sysconfig 
+        echo "PGDATA=$PGDATA"
+        echo "PGLOG=/var/log/pgsql"
+        echo "PGPORT=$SFA_DB_PORT"
+    ) >> $tmp ; mv -f $tmp $postgresql_sysconfig
+
+    ######## /var/lib/pgsql/data 
+    # Fix ownership (rpm installation may have changed it)
+    chown -R -H postgres:postgres $(dirname $PGDATA)
+
+    # PostgreSQL must be started at least once to bootstrap
+    # /var/lib/pgsql/data
+    if [ ! -f $postgresql_conf ] ; then
+        service postgresql initdb &> /dev/null || :
+        check
+    fi
 
-       ######## /var/lib/pgsql/data/postgresql.conf
-       registry_ip=""
-       foo=$(python -c "import socket; print socket.gethostbyname(\"$SFA_REGISTRY_HOST\")") && registry_ip="$foo"
-       # Enable DB server. drop Postgresql<=7.x
-       # PostgreSQL >=8.0 defines listen_addresses
-       # listen on a specific IP + localhost, more robust when run within a vserver
-       sed -i -e '/^listen_addresses/d' $postgresql_conf
-       if [ -z "$registry_ip" ] ; then
-           echo "listen_addresses = 'localhost'" >> $postgresql_conf
-       else
-           echo "listen_addresses = '${registry_ip},localhost'" >> $postgresql_conf
-       fi
-       # tweak timezone to be 'UTC'
-       sed -i -e '/^timezone=/d' $postgresql_conf
-       echo "timezone='UTC'" >> $postgresql_conf
-
-       ######## /var/lib/pgsql/data/pg_hba.conf
-       # Disable access to all DBs from all hosts
-       sed -i -e '/^\(host\|local\)/d' $pghba_conf
-
-       # Enable passwordless localhost access
-       echo "local all all trust" >>$pghba_conf
-       # grant access
-       (
-           echo "host $SFA_DB_NAME $SFA_DB_USER 127.0.0.1/32 password"
-           [ -n "$registry_ip" ] && echo "host $SFA_DB_NAME $SFA_DB_USER ${registry_ip}/32 password"
-       ) >>$pghba_conf
+    ######## /var/lib/pgsql/data/postgresql.conf
+    registry_ip=""
+    foo=$(python -c "import socket; print socket.gethostbyname(\"$SFA_REGISTRY_HOST\")") && registry_ip="$foo"
+    # Enable DB server. drop Postgresql<=7.x
+    # PostgreSQL >=8.0 defines listen_addresses
+    # listen on a specific IP + localhost, more robust when run within a vserver
+    sed -i -e '/^listen_addresses/d' $postgresql_conf
+    if [ -z "$registry_ip" ] ; then
+        echo "listen_addresses = 'localhost'" >> $postgresql_conf
+    else
+        echo "listen_addresses = '${registry_ip},localhost'" >> $postgresql_conf
+    fi
+    # tweak timezone to be 'UTC'
+    sed -i -e '/^timezone=/d' $postgresql_conf
+    echo "timezone='UTC'" >> $postgresql_conf
+
+    ######## /var/lib/pgsql/data/pg_hba.conf
+    # Disable access to all DBs from all hosts
+    sed -i -e '/^\(host\|local\)/d' $pg_hba_conf
+
+    # Enable passwordless localhost access
+    echo "local all all trust" >>$pg_hba_conf
+    # grant access
+    (
+        echo "host $SFA_DB_NAME $SFA_DB_USER 127.0.0.1/32 password"
+        [ -n "$registry_ip" ] && echo "host $SFA_DB_NAME $SFA_DB_USER ${registry_ip}/32 password"
+    ) >>$pg_hba_conf
 
     if [ "$SFA_GENERIC_FLAVOUR" == "openstack" ] ; then
-        [ -n "$registry_ip" ] && echo "host nova nova ${registry_ip}/32 password" >> $pghba_conf
+        [ -n "$registry_ip" ] && echo "host nova nova ${registry_ip}/32 password" >> $pg_hba_conf
     fi   
-       
-       # Fix ownership (sed -i changes it)
-       chown postgres:postgres $postgresql_conf $pghba_conf
-
-       ######## compute a password if needed
-       if [ -z "$SFA_DB_PASSWORD" ] ; then
-           SFA_DB_PASSWORD=$(uuidgen)
-           sfa-config --category=sfa_db --variable=password --value="$SFA_DB_PASSWORD" --save=$sfa_local_config $sfa_local_config >& /dev/null
-           reload force
-       fi
-
-    else
-
-        ######## we are colocated with a myplc
-       # no need to worry about the pgsql setup (see /etc/plc.d/postgresql)
-       # myplc enforces the password for its user
-       PLC_DB_USER=$(plc-config --category=plc_db --variable=user)
-       PLC_DB_PASSWORD=$(plc-config --category=plc_db --variable=password)
-       # store this as the SFA user/password 
-       sfa-config --category=sfa_db --variable=user --value=$PLC_DB_USER --save=$sfa_local_config $sfa_local_config >& /dev/null
-       sfa-config --category=sfa_db --variable=password --value=$PLC_DB_PASSWORD --save=$sfa_local_config $sfa_local_config >& /dev/null
-       reload force
+    
+    # Fix ownership (sed -i changes it)
+    chown postgres:postgres $postgresql_conf $pg_hba_conf
+
+    ######## compute a password if needed
+    if [ -z "$SFA_DB_PASSWORD" ] ; then
+        SFA_DB_PASSWORD=$(uuidgen)
+        sfa-config --category=sfa_db --variable=password --value="$SFA_DB_PASSWORD" --save=$sfa_local_config $sfa_local_config >& /dev/null
+        reload force
     fi
 
     ######## Start up the server
     # not too nice, but.. when co-located with myplc we'll let it start/stop postgresql
-    if ! rpm -q myplc >& /dev/null ; then
-       echo STARTING...
+    postgresql_check || {
        service postgresql start >& /dev/null
-    fi
+       MESSAGE=$"Starting PostgreSQL server"
+       echo -n "$MESSAGE"
+       [ "$ERRORS" == 0 ] && success "$MESSAGE" || failure "$MESSAGE" ; echo
+       # best-effort to make sure we turn it back off when running stop
+       touch $POSTGRESQL_STARTED
+    }
     postgresql_check
     check
        
@@ -266,7 +260,7 @@ function db_start () {
        check
     fi
     check
-    # mention sfaadmin.py instead of just sfaadmin for people who do not install through rpm
+    # mention sfaadmin.py instead of just sfaadmin for safety
     sfaadmin.py reg sync_db
 
     MESSAGE=$"SFA: Checking for PostgreSQL server"
@@ -281,12 +275,13 @@ function db_stop () {
     [ "$SFA_DB_ENABLED" == 1 -o "$SFA_DB_ENABLED" == True ] || return
 
     # not too nice, but.. when co-located with myplc we'll let it start/stop postgresql
-    if ! rpm -q myplc >& /dev/null ; then
+    if [ -f $POSTGRESQL_STARTED ] ; then
        service postgresql stop >& /dev/null
        check
        MESSAGE=$"Stopping PostgreSQL server"
        echo -n "$MESSAGE"
        [ "$ERRORS" == 0 ] && success "$MESSAGE" || failure "$MESSAGE" ; echo
+       rm -f $POSTGRESQL_STARTED
     fi
 }
 
@@ -306,7 +301,7 @@ function start() {
         
     [ "$SFA_SM_ENABLED" == 1 -o "$SFA_SM_ENABLED" == True ] && action "SFA: SliceMgr" daemon /usr/bin/sfa-start.py -s -d $OPTIONS
 
-    [ "$SFA_FLASHPOLICY_ENABLED" == 1 ] && \
+    [ "$SFA_FLASHPOLICY_ENABLED" == 1 -o "$SFA_FLASHPOLICY_ENABLED" == True ] && \
         action "Flash Policy Server" daemon /usr/bin/sfa_flashpolicy.py --file="$SFA_FLASHPOLICY_CONFIG_FILE" --port=$SFA_FLASHPOLICY_PORT -d
 
     touch $SFALOCK
@@ -352,4 +347,3 @@ case "$1" in
 esac
 
 exit $RETVAL
-