move confirmation that we want to run setup to the beginning of the script
authorChris Sharp <csharp@georgialibraries.org>
Mon, 4 Mar 2019 19:00:23 +0000 (14:00 -0500)
committerChris Sharp <csharp@georgialibraries.org>
Mon, 4 Mar 2019 19:00:23 +0000 (14:00 -0500)
templates/setup-head.sh

index 18210d6..665e136 100755 (executable)
@@ -25,41 +25,6 @@ if [ ! -d debs ] ### Check if debs exist.
         exit 3
 fi
 
-### Due to bug in apparmor profile for ejabberd we disable apparmor for installation
-echo;echo;echo;echo
-echo "Due to bug in apparmor profile for ejabberd we disable apparmor for installation"
-echo "Stopping and tearing down apparmor..."
-sleep 3
-echo;echo "stopping apparmor"
-if ! service apparmor stop 
-then
-       echo;echo;echo "Failed to stop apparmor"
-       echo "please run: service apparmor stop"
-       read -p "then press [Enter] to continue: " ENTER
-else
-       echo done.
-       sleep 1
-fi
-
-echo;echo "tearing down apparmor"
-if ! service apparmor teardown
-then
-       echo;echo;echo "Failed to teardown apparmor"
-       echo "Please run: service apparmor teardown"
-       read -p "then press [Enter] to continue: " ENTER
-else
-       echo done.
-       sleep 1
-fi
-
-Prep_DB_9_X () { #Prepare the database schema
-/openils/bin/eg_db_config --service all --create-schema --create-offline --create-database \
- --user EG_DB_USER --password EG_DB_PASSWORD --hostname MASTER_DB.CLUSTER_DOMAINNAME --port 5432 \
- --database evergreen --admin-user EG_ADMIN_USER --admin-pass EG_ADMIN_PASS
-
-}
-
-
 if [ -e $INSTALL_LOG ]
         then
         echo
@@ -100,6 +65,41 @@ echo
 
 echo $(date) >> "$INSTALL_LOG"
 
+
+### Due to bug in apparmor profile for ejabberd we disable apparmor for installation
+echo;echo;echo;echo
+echo "Due to bug in apparmor profile for ejabberd we disable apparmor for installation"
+echo "Stopping and tearing down apparmor..."
+sleep 3
+echo;echo "stopping apparmor"
+if ! service apparmor stop 
+then
+       echo;echo;echo "Failed to stop apparmor"
+       echo "please run: service apparmor stop"
+       read -p "then press [Enter] to continue: " ENTER
+else
+       echo done.
+       sleep 1
+fi
+
+echo;echo "tearing down apparmor"
+if ! service apparmor teardown
+then
+       echo;echo;echo "Failed to teardown apparmor"
+       echo "Please run: service apparmor teardown"
+       read -p "then press [Enter] to continue: " ENTER
+else
+       echo done.
+       sleep 1
+fi
+
+Prep_DB_9_X () { #Prepare the database schema
+/openils/bin/eg_db_config --service all --create-schema --create-offline --create-database \
+ --user EG_DB_USER --password EG_DB_PASSWORD --hostname MASTER_DB.CLUSTER_DOMAINNAME --port 5432 \
+ --database evergreen --admin-user EG_ADMIN_USER --admin-pass EG_ADMIN_PASS
+
+}
+
 THISHOST="head_file"
 if echo "$THISHOST" | grep -q "brick01-head" 
        then