summaryrefslogtreecommitdiff
path: root/vagrant
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2015-12-23 18:56:04 +0100
committervarac <varacanero@zeromail.org>2015-12-23 18:56:04 +0100
commitc6cb5ad672edc977c52537558a00a9c3f78d4b4e (patch)
tree4e56a6ee1cc8724c5961899b226cc9e28f036d9b /vagrant
parent04290d038eaf02d666c406d489c2442aa9b1e50b (diff)
Vagrant Workaround for #7754 and #7755
Diffstat (limited to 'vagrant')
-rwxr-xr-xvagrant/configure-leap.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/vagrant/configure-leap.sh b/vagrant/configure-leap.sh
index 5915ec94..00811144 100755
--- a/vagrant/configure-leap.sh
+++ b/vagrant/configure-leap.sh
@@ -53,6 +53,11 @@ if [ $? -eq 1 ]; then
exit 1
fi
+# couchrest gem does currently not install on jessie
+# https://leap.se/code/issues/7754
+# workaround is to install rake as gem
+gem install rake
+
$LEAP $OPTS -v 2 deploy
set +e
@@ -60,6 +65,16 @@ git add .
git commit -m'initialized and deployed provider'
set -e
+# Vagrant: leap_mx fails to start on jessie
+# https://leap.se/code/issues/7755
+# Workaround: we stop and start leap-mx after deploy and
+# before testing
+
+service leap-mx stop
+service leap-mx start
+
+
+
echo '==============================================='
echo 'testing the platform'
echo '==============================================='