diff options
author | varac <varacanero@zeromail.org> | 2015-09-09 13:51:19 +0200 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2015-09-10 14:47:47 +0200 |
commit | 7af30ee28ee492f77244b83b342d0ab8688a28d1 (patch) | |
tree | 4c1521e0bd1995d762ec1cb0e92516b9596756f5 | |
parent | 0d1755e1dd05100128282ae8f31434795ce279d6 (diff) |
Don't exit after failed deploy
Sometimes only trivial things fail that doesn't affect basic
functionallity.
Change-Id: I9d9d1a531a11e6eeee6fd823a51bb02e99771ec2
-rwxr-xr-x | vagrant/configure-leap.sh | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/vagrant/configure-leap.sh b/vagrant/configure-leap.sh index e0476739..332bdddf 100755 --- a/vagrant/configure-leap.sh +++ b/vagrant/configure-leap.sh @@ -53,10 +53,6 @@ if [ $? -eq 1 ]; then fi $LEAP $OPTS -v 2 deploy -if [ $? -eq 1 ]; then - echo 'deploy failed' - exit 1 -fi set +e git add . @@ -82,4 +78,3 @@ echo -e '\n\n\n' echo 'You are now ready to use your provider. Please update your /etc/hosts with following dns overrides:' $LEAP list --print ip_address,domain.full,dns.aliases | sed 's/,//g' | cut -d' ' -f 2- - |