diff --git a/.travis.yml b/.travis.yml index f19da3bd..3b514ecc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -40,8 +40,6 @@ jobs: - env: - PRIMARY_HOSTNAME=box2.abc.com - UPSTREAM_TAG=master - - FEATURE_NEXTCLOUD=false - - FEATURE_MUNIN=false name: upgrade-from-upstream install: - sudo tests/system-setup/upgrade-from-upstream.sh diff --git a/tests/lib/rest.sh b/tests/lib/rest.sh index dfbccb1b..e20a142f 100644 --- a/tests/lib/rest.sh +++ b/tests/lib/rest.sh @@ -100,7 +100,9 @@ rest_urlencoded() { REST_ERROR="REST status $REST_HTTP_CODE: $REST_OUTPUT" echo "${F_DANGER}$REST_ERROR${F_RESET}" 1>&2 if $is_local && [ $REST_HTTP_CODE -ge 500 ]; then + echo -n "$F_WARN" tail -100 /var/log/syslog + echo -n "$F_RESET" fi return 2 fi diff --git a/tests/system-setup/upgrade-from-upstream.sh b/tests/system-setup/upgrade-from-upstream.sh index 2db726d0..26f7b6a2 100755 --- a/tests/system-setup/upgrade-from-upstream.sh +++ b/tests/system-setup/upgrade-from-upstream.sh @@ -65,11 +65,24 @@ upstream_install() { H2 "Checkout $UPSTREAM_TAG" git checkout "$UPSTREAM_TAG" || die "git checkout $UPSTREAM_TAG failed" fi + + if [ "$TRAVIS" == "true" ]; then + # Apply a patch to setup/dns.sh so nsd will start. We must do + # it in the script and not after setup.sh runs because part of + # setup includes adding a new user via the management + # interface and that's where the management daemon crashes: + # + # "subprocess.CalledProcessError: Command '['/usr/sbin/service', 'nsd', 'restart']' returned non-zero exit status 1" + # + H2 "Patching upstream setup/dns.sh for Travis-CI" + sed -i 's|\(.*include:.*zones\.conf.*\)|cat >> /etc/nsd/nsd.conf </dev/null then die "Unable to add user $user: rc=$? err=$REST_ERROR" + else + echo "Add: $user" fi done # # add aliases # + H2 "Add aliases" local aliasdef for aliasdef in "${aliases[@]}"; do alias="$(awk -F'[> ]' '{print $1}' <<<"$aliasdef")" @@ -139,6 +156,8 @@ add_data() { elif ! rest_urlencoded POST /admin/mail/aliases/add "$EMAIL_ADDR" "$EMAIL_PW" --insecure -- "address=$alias" "forwards_to=$forwards_to" 2>/dev/null then die "Unable to add alias $alias: rc=$? err=$REST_ERROR" + else + echo "Add: $aliasdef" fi done }