Browse Source

Restored Thread Prompt due to implementation in restore

DerLinkman 2 years ago
parent
commit
65ca42ca42
1 changed files with 10 additions and 0 deletions
  1. 10 0
      helper-scripts/backup_and_restore.sh

+ 10 - 0
helper-scripts/backup_and_restore.sh

@@ -48,6 +48,16 @@ else
   fi
 fi
 
+if [[ -z ${THREADS} ]]; then
+  read -ep "How many threads do you want to use? (Default $(echo "CPU threads: $(grep -c processor /proc/cpuinfo)" | grep -E -o "[0-9]+")):" THREADS
+  THREADS=${THREADS:-$(echo "CPU threads: $(grep -c processor /proc/cpuinfo)" | grep -E -o "[0-9]+")}
+fi
+
+if ! [[ "${THREADS}" =~ ^[0-9]+$ ]] ; then
+  echo "Thread input is not a number!"
+  exit 1
+fi
+
 BACKUP_LOCATION=$(echo ${BACKUP_LOCATION} | sed 's#/$##')
 SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
 COMPOSE_FILE=${SCRIPT_DIR}/../docker-compose.yml