mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-05 00:27:25 +00:00
Apply a patch to setup/dns.sh on Travis so nsd will start during upstream install
This commit is contained in:
parent
071c89c420
commit
bce1cd41ff
@ -40,8 +40,6 @@ jobs:
|
|||||||
- env:
|
- env:
|
||||||
- PRIMARY_HOSTNAME=box2.abc.com
|
- PRIMARY_HOSTNAME=box2.abc.com
|
||||||
- UPSTREAM_TAG=master
|
- UPSTREAM_TAG=master
|
||||||
- FEATURE_NEXTCLOUD=false
|
|
||||||
- FEATURE_MUNIN=false
|
|
||||||
name: upgrade-from-upstream
|
name: upgrade-from-upstream
|
||||||
install:
|
install:
|
||||||
- sudo tests/system-setup/upgrade-from-upstream.sh
|
- sudo tests/system-setup/upgrade-from-upstream.sh
|
||||||
|
@ -100,7 +100,9 @@ rest_urlencoded() {
|
|||||||
REST_ERROR="REST status $REST_HTTP_CODE: $REST_OUTPUT"
|
REST_ERROR="REST status $REST_HTTP_CODE: $REST_OUTPUT"
|
||||||
echo "${F_DANGER}$REST_ERROR${F_RESET}" 1>&2
|
echo "${F_DANGER}$REST_ERROR${F_RESET}" 1>&2
|
||||||
if $is_local && [ $REST_HTTP_CODE -ge 500 ]; then
|
if $is_local && [ $REST_HTTP_CODE -ge 500 ]; then
|
||||||
|
echo -n "$F_WARN"
|
||||||
tail -100 /var/log/syslog
|
tail -100 /var/log/syslog
|
||||||
|
echo -n "$F_RESET"
|
||||||
fi
|
fi
|
||||||
return 2
|
return 2
|
||||||
fi
|
fi
|
||||||
|
@ -65,11 +65,24 @@ upstream_install() {
|
|||||||
H2 "Checkout $UPSTREAM_TAG"
|
H2 "Checkout $UPSTREAM_TAG"
|
||||||
git checkout "$UPSTREAM_TAG" || die "git checkout $UPSTREAM_TAG failed"
|
git checkout "$UPSTREAM_TAG" || die "git checkout $UPSTREAM_TAG failed"
|
||||||
fi
|
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 <<EOF\n do-ip4: yes\n do-ip6: no\nremote-control:\n control-enable: no\nEOF\n\n\1|' setup/dns.sh \
|
||||||
|
|| die "Couldn't patch setup/dns.sh !!"
|
||||||
|
fi
|
||||||
|
|
||||||
H2 "Run upstream setup"
|
H2 "Run upstream setup"
|
||||||
if ! setup/start.sh; then
|
if ! setup/start.sh; then
|
||||||
echo "$F_WARN"
|
echo "$F_WARN"
|
||||||
tail -100 /var/log/syslog
|
dump_file /var/log/syslog 100
|
||||||
echo "$F_RESET"
|
echo "$F_RESET"
|
||||||
die "Upstream setup failed!"
|
die "Upstream setup failed!"
|
||||||
fi
|
fi
|
||||||
@ -116,6 +129,7 @@ add_data() {
|
|||||||
#
|
#
|
||||||
# add users
|
# add users
|
||||||
#
|
#
|
||||||
|
H2 "Add users"
|
||||||
for user in "${users[@]}"; do
|
for user in "${users[@]}"; do
|
||||||
if array_contains "$user" "${current_users[@]}"; then
|
if array_contains "$user" "${current_users[@]}"; then
|
||||||
echo "Not adding user $user: already exists"
|
echo "Not adding user $user: already exists"
|
||||||
@ -123,12 +137,15 @@ add_data() {
|
|||||||
elif ! rest_urlencoded POST /admin/mail/users/add "$EMAIL_ADDR" "$EMAIL_PW" --insecure -- "email=$user" "password=$pw" 2>/dev/null
|
elif ! rest_urlencoded POST /admin/mail/users/add "$EMAIL_ADDR" "$EMAIL_PW" --insecure -- "email=$user" "password=$pw" 2>/dev/null
|
||||||
then
|
then
|
||||||
die "Unable to add user $user: rc=$? err=$REST_ERROR"
|
die "Unable to add user $user: rc=$? err=$REST_ERROR"
|
||||||
|
else
|
||||||
|
echo "Add: $user"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
#
|
#
|
||||||
# add aliases
|
# add aliases
|
||||||
#
|
#
|
||||||
|
H2 "Add aliases"
|
||||||
local aliasdef
|
local aliasdef
|
||||||
for aliasdef in "${aliases[@]}"; do
|
for aliasdef in "${aliases[@]}"; do
|
||||||
alias="$(awk -F'[> ]' '{print $1}' <<<"$aliasdef")"
|
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
|
elif ! rest_urlencoded POST /admin/mail/aliases/add "$EMAIL_ADDR" "$EMAIL_PW" --insecure -- "address=$alias" "forwards_to=$forwards_to" 2>/dev/null
|
||||||
then
|
then
|
||||||
die "Unable to add alias $alias: rc=$? err=$REST_ERROR"
|
die "Unable to add alias $alias: rc=$? err=$REST_ERROR"
|
||||||
|
else
|
||||||
|
echo "Add: $aliasdef"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user