1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-05 00:27:25 +00:00

Try to deal with nsd failure under Travis

This commit is contained in:
downtownallday 2020-06-09 22:45:12 -04:00
parent e498b47d53
commit 0cd9e92566
3 changed files with 26 additions and 5 deletions

View File

@ -14,6 +14,13 @@ before_install:
# #
- echo "==== DUMP AppArmor Status ====" - echo "==== DUMP AppArmor Status ===="
- (sudo aa-status; true) - (sudo aa-status; true)
#
- echo "==== DUMP NETWORK INFO ===="
- (hostname -I; true)
- (hostname -i; true)
- (hostname; true)
- (hostname --fqdn; true)
- (if add; true)
install: install:
- sudo tests/assets/system-setup/remote-nextcloud-docker.sh - sudo tests/assets/system-setup/remote-nextcloud-docker.sh

View File

@ -88,7 +88,7 @@ before_miab_install() {
# enable the remote Nextcloud setup mod, which tells MiaB-LDAP to use # enable the remote Nextcloud setup mod, which tells MiaB-LDAP to use
# the remote Nextcloud for calendar and contacts instead of the # the remote Nextcloud for calendar and contacts instead of the
# MiaB-installed one # MiaB-installed one
H2 "Create setup/mod.d/remote-nextcloud.sh symbolic link" H2 "Create setup/mods.d/remote-nextcloud.sh symbolic link"
if [ ! -e "setup/mods.d/remote-nextcloud.sh" ]; then if [ ! -e "setup/mods.d/remote-nextcloud.sh" ]; then
ln -s "../mods.available/remote-nextcloud.sh" "setup/mods.d/remote-nextcloud.sh" || die "Could not create remote-nextcloud.sh symlink" ln -s "../mods.available/remote-nextcloud.sh" "setup/mods.d/remote-nextcloud.sh" || die "Could not create remote-nextcloud.sh symlink"
fi fi
@ -102,8 +102,22 @@ before_miab_install() {
miab_install() { miab_install() {
H1 "MIAB-LDAP INSTALL" H1 "MIAB-LDAP INSTALL"
if ! setup/start.sh; then if ! setup/start.sh; then
dump_log "/var/log/syslog" 200 local failure="true"
die "setup/start.sh failed!"
if [ "$TRAVIS" == "true" ] && tail -10 /var/log/syslog | grep "Exception on /mail/users/add" >/dev/null; then
dump_log "/etc/mailinabox.conf"
H2 "Apply Travis-CI nsd fix"
travis_fix_nsd || die "Could not fix NSD startup issue"
H2 "Re-run firstuser.sh"
if setup/firstuser.sh; then
failure="false"
fi
fi
if [ "$failure" == "true" ]; then
dump_log "/var/log/syslog" 100
die "setup/start.sh failed!"
fi
fi fi
} }

View File

@ -26,7 +26,7 @@ dump_log() {
tail -$lines "$log_file" tail -$lines "$log_file"
else else
H1 "$title" H1 "$title"
tail "$log_file" cat "$log_file"
fi fi
} }
@ -95,7 +95,7 @@ travis_fix_nsd() {
fi fi
# nsd won't start on Travis-CI without the changes below: ip6 off and # nsd won't start on Travis-CI without the changes below: ip6 off and
# control-enable set to no. Even though the nsd docs says the # control-enable set to no. Even though the nsd docs say the
# default value for control-enable is no, running "nsd-checkconf -o # default value for control-enable is no, running "nsd-checkconf -o
# control-enable /etc/nsd/nsd.conf" returns "yes", so we explicitly # control-enable /etc/nsd/nsd.conf" returns "yes", so we explicitly
# set it here. # set it here.