From 071c89c420ab07e728300c2fae0f55da19d28345 Mon Sep 17 00:00:00 2001 From: downtownallday Date: Sun, 14 Jun 2020 17:19:30 -0400 Subject: [PATCH] Tail /var/log/messages if upstream setup fails --- .travis.yml | 2 +- tests/system-setup/upgrade-from-upstream.sh | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index f435280e..f19da3bd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ # travisci config env: global: - - MIAB_LDAP=true + - MIAB_LDAP_PROJECT=true language: shell os: linux diff --git a/tests/system-setup/upgrade-from-upstream.sh b/tests/system-setup/upgrade-from-upstream.sh index 0e321e49..2db726d0 100755 --- a/tests/system-setup/upgrade-from-upstream.sh +++ b/tests/system-setup/upgrade-from-upstream.sh @@ -67,7 +67,12 @@ upstream_install() { fi H2 "Run upstream setup" - setup/start.sh || die "Upstream setup failed!" + if ! setup/start.sh; then + echo "$F_WARN" + tail -100 /var/log/syslog + echo "$F_RESET" + die "Upstream setup failed!" + fi popd >/dev/null H2 "Upstream info"