X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=init.d%2Fsfa;h=7c51b48896d23bd5b5fdea9d3fdc200577486326;hb=2323eb5f54f6d958352b94e16119f1bfeda8dd07;hp=92c70ea294ce69f5e9a2480f76deebcbe1e4f5dd;hpb=ad6330d255e61373e8f506c9ced34715a2d9edac;p=sfa.git diff --git a/init.d/sfa b/init.d/sfa index 92c70ea2..7c51b488 100755 --- a/init.d/sfa +++ b/init.d/sfa @@ -59,6 +59,18 @@ function postgresql_check () { return 1 } +# use a single date of this script invocation for the dump_*_db functions. +DATE=$(date +"%Y-%m-%d-%H-%M-%S") + +# Dumps the database - optional argument to specify filename suffix +function dump_sfa_db() { + if [ -n "$1" ] ; then suffix="-$1" ; else suffix="" ; fi + mkdir -p /usr/share/sfa/backups + dumpfile=/usr/share/sfa/backups/$(date +"${SFA_DB_NAME}.${DATE}${suffix}.sql") + pg_dump -U $SFA_DB_USER $SFA_DB_NAME > $dumpfile + echo "Saved sfa database in $dumpfile" + check +} # Regenerate configuration files - almost verbatim from plc.init function reload () { @@ -85,10 +97,10 @@ function reload () { # Convert configuration to various formats if [ -n "$force" -o $sfa_whole_config -nt /etc/sfa/sfa_config ] ; then - plc-config --shell $sfa_whole_config >/etc/sfa/sfa_config + plc-config --shell $sfa_whole_config > /etc/sfa/sfa_config fi if [ -n "$force" -o $sfa_whole_config -nt /etc/sfa/sfa_config.py ] ; then - plc-config --python $sfa_whole_config >/etc/sfa/sfa_config.py + plc-config --python $sfa_whole_config > /etc/sfa/sfa_config.py fi # if [ -n "$force" -o $sfa_whole_config -nt /etc/sfa/php/sfa_config.php ] ; then # mkdir -p /etc/sfa/php @@ -101,6 +113,10 @@ function reload () { # (or there is no myplc at all) this should be turned off # as the component manager is not operational yet we skip this for now #gen-sfa-cm-config.py + + # reload the shell version + [ -f /etc/sfa/sfa_config ] && . /etc/sfa/sfa_config + } ### initialize DB (don't chkconfig postgresql on) @@ -122,7 +138,7 @@ function db_start () { ( egrep -v '^(PGDATA=|PGLOG=|PGPORT=)' $postgresql_sysconfig echo "PGDATA=$PGDATA" echo "PGLOG=/var/log/pgsql" - echo "PGPORT=$PLC_DB_PORT" + echo "PGPORT=$SFA_DB_PORT" ) >> $tmp ; mv -f $tmp $postgresql_sysconfig ######## /var/lib/pgsql/data @@ -163,6 +179,10 @@ function db_start () { 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 + + if [ "$SFA_GENERIC_FLAVOUR" == "openstack" ] ; then + [ -n "$registry_ip" ] && echo "host nova nova ${registry_ip}/32 password" >> $pghba_conf + fi # Fix ownership (sed -i changes it) chown postgres:postgres $postgresql_conf $pghba_conf @@ -208,8 +228,7 @@ function db_start () { # db if ! psql -U $SFA_DB_USER -c "" $SFA_DB_NAME >/dev/null 2>&1 ; then createdb -U postgres --template=template0 --encoding=UNICODE --owner=$SFA_DB_USER $SFA_DB_NAME - # xxx in case we'd like to ship the db schema separately - #psql -U $SFA_DB_USER -f /etc/sfa/or/someplace/else/sfa.sql $SFA_DB_NAME + check fi check @@ -239,25 +258,19 @@ function start() { reload db_start + # migrations are now handled in the code by sfa.storage.dbschema # install peer certs action $"SFA installing peer certs" daemon /usr/bin/sfa-start.py -t -d $OPTIONS - if [ "$SFA_REGISTRY_ENABLED" -eq 1 ]; then - action $"SFA Registry" daemon /usr/bin/sfa-start.py -r -d $OPTIONS - fi - - if [ "$SFA_AGGREGATE_ENABLED" -eq 1 ]; then - action $"SFA Aggregate" daemon /usr/bin/sfa-start.py -a -d $OPTIONS - fi + [ "$SFA_REGISTRY_ENABLED" == 1 ] && action $"SFA Registry" daemon /usr/bin/sfa-start.py -r -d $OPTIONS + + [ "$SFA_AGGREGATE_ENABLED" == 1 ] && action $"SFA Aggregate" daemon /usr/bin/sfa-start.py -a -d $OPTIONS - if [ "$SFA_SM_ENABLED" -eq 1 ]; then - action "SFA SliceMgr" daemon /usr/bin/sfa-start.py -s -d $OPTIONS - fi + [ "$SFA_SM_ENABLED" == 1 ] && action "SFA SliceMgr" daemon /usr/bin/sfa-start.py -s -d $OPTIONS - if [ "$SFA_FLASHPOLICY_ENABLED" -eq 1 ]; then + [ "$SFA_FLASHPOLICY_ENABLED" == 1 ] && \ action "Flash Policy Server" daemon /usr/bin/sfa_flashpolicy.py --file="$SFA_FLASHPOLICY_CONFIG_FILE" --port=$SFA_FLASHPOLICY_PORT -d - fi touch /var/lock/subsys/sfa-start.py @@ -287,8 +300,11 @@ case "$1" in status sfa-start.py RETVAL=$? ;; + dbdump) + dump_sfa_db + ;; *) - echo $"Usage: $0 {start|stop|reload|restart|condrestart|status}" + echo $"Usage: $0 {start|stop|reload|restart|condrestart|status|dbdump}" exit 1 ;; esac