From 9d855c4059091f3dce49121f1d69c47736e21d95 Mon Sep 17 00:00:00 2001 From: Andy Witter Date: Mon, 8 Apr 2019 16:12:23 -0400 Subject: [PATCH] move apparmor teardown to after user confirms continue on brick01 --- templates/setup-head.sh | 54 ++++++++++++++++++++++++------------------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/templates/setup-head.sh b/templates/setup-head.sh index 58095f2..add6ace 100755 --- a/templates/setup-head.sh +++ b/templates/setup-head.sh @@ -68,33 +68,6 @@ 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 \ @@ -112,6 +85,33 @@ if echo "$THISHOST" | grep -q "brick01-head" read -p "Press [Enter] to coninue or [Ctrl]-[c] to quit" 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 + echo "Setting Hostname" sleep 2 -- 2.11.0