startup scripts : assume initscripts is not installed, only use systemctl
authorparmentelat <thierry.parmentelat@inria.fr>
Fri, 7 Dec 2018 15:52:15 +0000 (16:52 +0100)
committerparmentelat <thierry.parmentelat@inria.fr>
Fri, 7 Dec 2018 15:52:15 +0000 (16:52 +0100)
plc.d/postgresql

index 1139af4..18d9402 100755 (executable)
@@ -29,14 +29,14 @@ export PGPORT=$PLC_DB_PORT
 function postgresql_check () {
 
     # wait until postmaster is up and running - or 10s max
-    if status postmaster && [ -f /var/lock/subsys/postgresql ] ; then
-       # The only way we can be sure is if we can access it
-       for i in $(seq 1 10) ; do
-           # Must do this as the postgres user initially (before we
-           # fix pg_hba.conf to passwordless localhost access).
-           su -c 'psql -U postgres -c "" template1' postgres && return 0
-           sleep 1
-       done
+    if systemctl status postgresql >& /dev/null; then
+        # The only way we can be sure is if we can access it
+        for i in $(seq 1 10) ; do
+            # Must do this as the postgres user initially (before we
+            # fix pg_hba.conf to passwordless localhost access).
+            su -c 'psql -U postgres -c "" template1' postgres && return 0
+            sleep 1
+        done
     fi
 
     return 1
@@ -44,158 +44,157 @@ function postgresql_check () {
 
 case "$1" in
     start)
-       if [ "$PLC_DB_ENABLED" != "1" ] ; then
-           exit 0
-       fi
-
-       MESSAGE=$"Starting PostgreSQL server"
-       dialog "$MESSAGE"
-       
-       ######## sysconfig
+        if [ "$PLC_DB_ENABLED" != "1" ] ; then
+            exit 0
+        fi
+
+        MESSAGE=$"Starting PostgreSQL server"
+        dialog "$MESSAGE"
+
+        ######## sysconfig
 # xxx on f16, the systemd init script won't read /etc/sysconfig/pgsql/postgresql any more
 # need to find out how to perform this configuration, if still needed
-       # Set data directory and redirect startup output to /var/log/pgsql
-       mkdir -p $(dirname $postgresql_sysconfig)
-       touch $postgresql_sysconfig
-       tmp=${postgresql_sysconfig}.new
-       # remove any previous definitions and write ours
-       ( egrep -v '^(PGDATA=|PGLOG=|PGPORT=)' $postgresql_sysconfig 
-           echo "PGDATA=$PGDATA"
-           echo "PGLOG=/var/log/pgsql"
-           echo "PGPORT=$PLC_DB_PORT"
-       ) > $tmp ; mv -f $tmp $postgresql_sysconfig
-
-       ######## /var/lib/pgsql/data 
-       # Fix ownership of /var/lib/pgsql (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
+        # Set data directory and redirect startup output to /var/log/pgsql
+        mkdir -p $(dirname $postgresql_sysconfig)
+        touch $postgresql_sysconfig
+        tmp=${postgresql_sysconfig}.new
+        # remove any previous definitions and write ours
+        ( egrep -v '^(PGDATA=|PGLOG=|PGPORT=)' $postgresql_sysconfig
+            echo "PGDATA=$PGDATA"
+            echo "PGLOG=/var/log/pgsql"
+            echo "PGPORT=$PLC_DB_PORT"
+        ) > $tmp ; mv -f $tmp $postgresql_sysconfig
+
+        ######## /var/lib/pgsql/data
+        # Fix ownership of /var/lib/pgsql (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
 # fedora 16 uses systemd
-# http://docs.fedoraproject.org/en-US/Fedora/16/html/Release_Notes/sect-Release_Notes-Changes_for_Sysadmin.html            
-           if type postgresql-setup >& /dev/null ; then
-               postgresql-setup initdb || :
-               check
-           else
-               service postgresql initdb &> /dev/null || postgresql :
-               check
-           fi
-       fi
-
-       ######## /var/lib/pgsql/data/postgresql.conf
-       # 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
-       echo "listen_addresses = '${PLC_DB_HOST},localhost'" >> $postgresql_conf
-       # 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 MyPLC and drupal DBs from all hosts
-       sed -i -e '/^\(host\|local\)/d' $pghba_conf
-
-       # Enable passwordless localhost access
-       echo "local all all trust" >>$pghba_conf
-
-       # 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)
-       ip_failure=0
-       if [ -z "$PLC_API_IP" ] ; then
-           MESSAGE=$"PLC_API_IP is not set"
-           dialog "$MESSAGE"
-           ip_failure=1
-       fi
-       if [ -z "$PLC_BOOT_IP" ] ; then
-           MESSAGE=$"PLC_BOOT_IP is not set"
-           dialog "$MESSAGE"
-           ip_failure=1
-       fi
-       if [ -z "$PLC_WWW_IP" ] ; then
-           MESSAGE=$"PLC_WWW_IP is not set"
-           dialog "$MESSAGE"
-           ip_failure=1
-       fi
-       if [ $ip_failure -eq 1 ] ; then
-           /bin/false
-           check
-       fi
-
-       (
-           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"
-           echo "host drupal $PLC_DB_USER $PLC_WWW_IP/32 password"
-       ) >>$pghba_conf
-
-       # Append site-specific access rules
-       for file in $pghba_conf.d/*.conf ; do
-           cat "$file" >>$pghba_conf
-       done
-
-       # Fix ownership (sed -i changes it)
-       chown postgres:postgres $postgresql_conf $pghba_conf
-
-       ######## Start up the server - ignore retcod and check this our way
-       (exec 3>&- 4>&- ; service postgresql start)
-       postgresql_check
-       check
-
-       ######## Create/update the unprivileged database user and password
-       if [ -z "$PLC_DB_PASSWORD" ] ; then
-           PLC_DB_PASSWORD=$(uuidgen)
-           plc-config --category=plc_db --variable=password --value="$PLC_DB_PASSWORD" --save=$local_config $local_config
+# http://docs.fedoraproject.org/en-US/Fedora/16/html/Release_Notes/sect-Release_Notes-Changes_for_Sysadmin.html
+            if type postgresql-setup >& /dev/null ; then
+                postgresql-setup initdb || :
+                check
+            else
+                sudo postgresql-setup --initdb --unit postgresql &> /dev/null || postgresql :
+                check
+            fi
+        fi
+
+        ######## /var/lib/pgsql/data/postgresql.conf
+        # 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
+        echo "listen_addresses = '${PLC_DB_HOST},localhost'" >> $postgresql_conf
+        # 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 MyPLC and drupal DBs from all hosts
+        sed -i -e '/^\(host\|local\)/d' $pghba_conf
+
+        # Enable passwordless localhost access
+        echo "local all all trust" >>$pghba_conf
+
+        # 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)
+        ip_failure=0
+        if [ -z "$PLC_API_IP" ] ; then
+            MESSAGE=$"PLC_API_IP is not set"
+            dialog "$MESSAGE"
+            ip_failure=1
+        fi
+        if [ -z "$PLC_BOOT_IP" ] ; then
+            MESSAGE=$"PLC_BOOT_IP is not set"
+            dialog "$MESSAGE"
+            ip_failure=1
+        fi
+        if [ -z "$PLC_WWW_IP" ] ; then
+            MESSAGE=$"PLC_WWW_IP is not set"
+            dialog "$MESSAGE"
+            ip_failure=1
+        fi
+        if [ $ip_failure -eq 1 ] ; then
+            /bin/false
+            check
+        fi
+
+        (
+            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"
+            echo "host drupal $PLC_DB_USER $PLC_WWW_IP/32 password"
+        ) >>$pghba_conf
+
+        # Append site-specific access rules
+        for file in $pghba_conf.d/*.conf ; do
+            cat "$file" >>$pghba_conf
+        done
+
+        # Fix ownership (sed -i changes it)
+        chown postgres:postgres $postgresql_conf $pghba_conf
+
+        ######## Start up the server - ignore retcod and check this our way
+        (exec 3>&- 4>&- ; systemctl start postgresql)
+        postgresql_check
+        check
+
+        ######## Create/update the unprivileged database user and password
+        if [ -z "$PLC_DB_PASSWORD" ] ; then
+            PLC_DB_PASSWORD=$(uuidgen)
+            plc-config --category=plc_db --variable=password --value="$PLC_DB_PASSWORD" --save=$local_config $local_config
         #service plc reload
         plc_reload force
-       fi
-       if ! psql -U $PLC_DB_USER -c "" template1 >/dev/null 2>&1 ; then
-           psql -U postgres -c "CREATE USER $PLC_DB_USER PASSWORD '$PLC_DB_PASSWORD'" template1
-       else
-           psql -U postgres -c "ALTER USER $PLC_DB_USER WITH PASSWORD '$PLC_DB_PASSWORD'" template1
-       fi
-       check
-
-       ######## Create the databases if necessary
-       if ! psql -U $PLC_DB_USER -c "" $PLC_DB_NAME >/dev/null 2>&1 ; then
-           createdb -U postgres --template=template0 --encoding=UNICODE --owner=$PLC_DB_USER $PLC_DB_NAME
-           psql -U $PLC_DB_USER -f /usr/share/plc_api/$PLC_DB_NAME.sql $PLC_DB_NAME
-       fi
-       check
-       if ! psql -U $PLC_DB_USER -c "" drupal >/dev/null 2>&1 ; then
-           createdb -U postgres --template=template0 --encoding=UNICODE --owner=$PLC_DB_USER drupal
-            psql -U $PLC_DB_USER -f /var/www/html/database/database.pgsql drupal 
-       fi
-       check
-
-       result "$MESSAGE"
-       ;;
+        fi
+        if ! psql -U $PLC_DB_USER -c "" template1 >/dev/null 2>&1 ; then
+            psql -U postgres -c "CREATE USER $PLC_DB_USER PASSWORD '$PLC_DB_PASSWORD'" template1
+        else
+            psql -U postgres -c "ALTER USER $PLC_DB_USER WITH PASSWORD '$PLC_DB_PASSWORD'" template1
+        fi
+        check
+
+        ######## Create the databases if necessary
+        if ! psql -U $PLC_DB_USER -c "" $PLC_DB_NAME >/dev/null 2>&1 ; then
+            createdb -U postgres --template=template0 --encoding=UNICODE --owner=$PLC_DB_USER $PLC_DB_NAME
+            psql -U $PLC_DB_USER -f /usr/share/plc_api/$PLC_DB_NAME.sql $PLC_DB_NAME
+        fi
+        check
+        if ! psql -U $PLC_DB_USER -c "" drupal >/dev/null 2>&1 ; then
+            createdb -U postgres --template=template0 --encoding=UNICODE --owner=$PLC_DB_USER drupal
+            psql -U $PLC_DB_USER -f /var/www/html/database/database.pgsql drupal
+        fi
+
+        result "$MESSAGE"
+        ;;
 
     stop)
-       MESSAGE=$"Stopping PostgreSQL server"
-       dialog "$MESSAGE"
+        MESSAGE=$"Stopping PostgreSQL server"
+        dialog "$MESSAGE"
 
-       # Drop the current user in case the username changes
-       psql -U postgres -c "DROP USER $PLC_DB_USER" template1
+        # Drop the current user in case the username changes
+        psql -U postgres -c "DROP USER $PLC_DB_USER" template1
 
-       # WARNING: If the DB name changes, the old DB will be left
-       # intact and a new one will be created. If it changes
-       # back, the old DB will not be re-created.
+        # WARNING: If the DB name changes, the old DB will be left
+        # intact and a new one will be created. If it changes
+        # back, the old DB will not be re-created.
 
-       # Shut down the server
-       service postgresql stop
+        # Shut down the server
+        systemctl stop postgresql
 
-       # /etc/init.d/postgresql fails if it is not running
-       [ "$PLC_DB_ENABLED" = 1 ] && check
+        # /etc/init.d/postgresql fails if it is not running
+        [ "$PLC_DB_ENABLED" = 1 ] && check
 
-       result "$MESSAGE"
-       ;;
+        result "$MESSAGE"
+        ;;
 esac
 
 exit $ERRORS