home · contact · privacy
Fix.
authorChristian Heller <c.heller@plomlompom.de>
Fri, 14 Feb 2020 23:32:22 +0000 (00:32 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Fri, 14 Feb 2020 23:32:22 +0000 (00:32 +0100)
buster/setup_scripts/migrate_app.sh

index 0d50f1cbe870880a54c3cb0e96294efe5c3f14d8..3be68704f87c915162752ab6df3b165723245c21 100755 (executable)
@@ -2,8 +2,8 @@
 set -e
 set -x
 
-if [ "$#" -lt 4 ]; then
-    echo 'Need at least four arguments: old server IP, service name, DB name, and backup directory names.'
+if [ "$#" -lt 2 ]; then
+    echo 'Need two arguments: old server IP, and service name.'
     false
 fi
 if [ ! "$2" = "pleroma" ] && [ ! "$2" = "peertube" ]; then
@@ -12,8 +12,13 @@ if [ ! "$2" = "pleroma" ] && [ ! "$2" = "peertube" ]; then
 fi
 server_ip="$1"
 app="$2"
-db_name="$3"
-shift 3
+if [ "${app}" = "pleroma" ]; then
+    db_name="pleroma"
+    dirs="/var/www/peertube/storage /var/www/peertube/config"
+elif [ "${app}" = "peertube" ]; then
+    db_name="peertube_prod"
+    dirs="/var/lib/pleroma/uploads /etc/pleroma"
+fi
 
 config_tree_prefix="${HOME}/config/buster"
 setup_scripts_dir="${config_tree_prefix}/setup_scripts"
@@ -23,6 +28,6 @@ cd "${setup_scripts_dir}"
 read -p'Hit Enter when you are done.' ignore
 eval $(ssh-agent) && ssh-add
 echo 'Enter password for root on target server next.'
-ssh plom@"${server_ip}" "su -lc \"cd config/buster/setup_scripts && git pull && ./backup_app.sh ${app} ${db_name} $@\""
+ssh plom@"${server_ip}" "su -lc \"cd config/buster/setup_scripts && git pull && ./backup_app.sh ${app} ${db_name} ${dirs}\""
 scp plom@"${server_ip}":~/${app}_backup.tar /home/plom/${app}_backup.tar
 ./restore_app.sh "${app}" "${db_name}"