X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=init.d%2Fsfa;h=7c51b48896d23bd5b5fdea9d3fdc200577486326;hb=d3a5992b6164abcd501af11e9cdd635efc4ff6aa;hp=a3cd5447241ca2a8788290cbebee1ba99d2cf30a;hpb=45f5ad180c84c1462cfc5e3c8574318e2d121b2d;p=sfa.git diff --git a/init.d/sfa b/init.d/sfa index a3cd5447..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 @@ -209,9 +229,6 @@ function db_start () { 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 check - # xxx in case we'd like to ship the db schema separately - psql -U $SFA_DB_USER -f /usr/share/sfa/sfa.sql $SFA_DB_NAME - check fi check @@ -241,6 +258,7 @@ 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 @@ -282,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