home · contact · privacy
Fix.
[config] / buster / setup_scripts / restore_app.sh
index c4520824d32e22fc7c547ae8296f59e2a1df6fa9..817c07d1a062988c597184af43dbb921abf2236e 100755 (executable)
@@ -6,24 +6,33 @@ if [ "$#" -lt 2 ]; then
     echo 'Need two arguments: service name and DB name.'
     false
 fi
-if [ ! "$1" = "pleroma" ] && [ ! "$1" = "peertube" ]; then
-    echo "Need legal service name (pleroma or peertube)."
+if [ ! "$1" = "pleroma_otp" ] && [ ! "$1" = "pleroma_source" ] && [ ! "$1" = "peertube" ]; then
+    echo "Need legal service name (pleroma_otp or pleroma_source or peertube)."
     false
 fi
 app="$1"
 db_name="$2"
+service="$1"
+if [ "${app}" = "pleroma_source" ] || [ "${app}" = "pleroma_otp" ]; then
+    service=pleroma
+fi
 
-service "${app}" stop
+service "${service}" stop
 
-mv "/home/plom/${app}_backup.tar" /tmp/
+mv "/home/plom/${service}_backup.tar" /tmp/
 cd /tmp
-tar xf "${app}_backup.tar"
+tar xf "${service}_backup.tar"
 
-su postgres -c "pg_restore -c -1 -d ${db_name} ${app}_backup/${db_name}.pgdump"
-rm "${app}_backup/${db_name}.pgdump"
+su postgres -c "pg_restore -c -1 -d ${db_name} ${service}_backup/${db_name}.pgdump"
+rm "${service}_backup/${db_name}.pgdump"
 
-cd "${app}_backup"
-for path in $/find . -type f); do
+cd "${service}_backup"
+for path in $(find . -type f); do
+    if [ "${app}" = "pleroma_source" ]; then
+        if [ "${path}" = './opt/pleroma/config/prod.secret.exs' ]; then
+            continue  # skip file that contains passwords
+        fi
+    fi
     target_path=$(echo "${path}" | cut -c2-)
     source_path=$(realpath "${path}")
     dir=$(dirname "${target_path}")
@@ -32,11 +41,13 @@ for path in $/find . -type f); do
 done
 
 # TODO: Horrible hack, improve.
-if [ "${app}" = "pleroma" ]; then
+if [ "${app}" = "pleroma_otp" ]; then
     db_pw=$(cat /etc/pleroma/config.exs | grep password | sed 's/[ ]*password\: *//g' | sed 's/,//g' | sed 's/"//g')
 elif [ "${app}" = "peertube" ]; then
     db_pw=$(cat /var/www/peertube/config/production.yaml | grep password | head -1 | sed "s/[ ]*password\: *//g" | sed "s/'//g")
 fi
-su postgres -lc "psql -c \"ALTER USER ${app} WITH PASSWORD '${db_pw}';\""
+if [ "${app}" = "pleroma_otp" ] || [ "${app}" = "peertube" ]; then
+    su postgres -lc "psql -c \"ALTER USER ${service} WITH PASSWORD '${db_pw}';\""
+fi
 
-service "${app}" stop
+service "${service}" start