aboutsummaryrefslogtreecommitdiffstats
path: root/opera_launch.sh
diff options
context:
space:
mode:
Diffstat (limited to 'opera_launch.sh')
-rwxr-xr-xopera_launch.sh8
1 files changed, 6 insertions, 2 deletions
diff --git a/opera_launch.sh b/opera_launch.sh
index ebbe63d..750ace2 100755
--- a/opera_launch.sh
+++ b/opera_launch.sh
@@ -36,6 +36,8 @@ source ${JUJU_DIR}/juju_connect.sh
mkdir -p $WORK_DIR
if [[ "$DEPLOY_FIRST_TIME" == "true" ]]; then
+ sudo rm -f /root/.ssh/known_hosts
+ sudo rm -f /root/.ssh/known_hosts.old
package_prepare
network_prepare
generate_compass_openrc
@@ -43,6 +45,8 @@ fi
source $WORK_DIR/admin-openrc.sh
+sudo sync && sudo sysctl -w vm.drop_caches=3
+
if [[ "$DEPLOY_OPENO" == "true" ]]; then
if ! openo_download_iso; then
log_error "openo_download_iso failed"
@@ -60,6 +64,8 @@ if [[ "$DEPLOY_OPENO" == "true" ]]; then
fi
fi
+sudo sync && sudo sysctl -w vm.drop_caches=3
+
if [[ "$DEPLOY_JUJU" == "true" ]]; then
juju_env_prepare
@@ -72,9 +78,7 @@ if [[ "$DEPLOY_JUJU" == "true" ]]; then
log_error "launch_juju failed"
exit 1
fi
-fi
-if [[ "$DEPLOY_OPENO" == "true" && "$DEPLOY_JUJU" == "true" ]]; then
connect_juju_and_openo
fi