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:
parent
e498b47d53
commit
0cd9e92566
@ -14,6 +14,13 @@ before_install:
|
||||
#
|
||||
- echo "==== DUMP AppArmor Status ===="
|
||||
- (sudo aa-status; true)
|
||||
#
|
||||
- echo "==== DUMP NETWORK INFO ===="
|
||||
- (hostname -I; true)
|
||||
- (hostname -i; true)
|
||||
- (hostname; true)
|
||||
- (hostname --fqdn; true)
|
||||
- (if add; true)
|
||||
|
||||
install:
|
||||
- sudo tests/assets/system-setup/remote-nextcloud-docker.sh
|
||||
|
@ -88,7 +88,7 @@ before_miab_install() {
|
||||
# enable the remote Nextcloud setup mod, which tells MiaB-LDAP to use
|
||||
# the remote Nextcloud for calendar and contacts instead of the
|
||||
# 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
|
||||
ln -s "../mods.available/remote-nextcloud.sh" "setup/mods.d/remote-nextcloud.sh" || die "Could not create remote-nextcloud.sh symlink"
|
||||
fi
|
||||
@ -102,8 +102,22 @@ before_miab_install() {
|
||||
miab_install() {
|
||||
H1 "MIAB-LDAP INSTALL"
|
||||
if ! setup/start.sh; then
|
||||
dump_log "/var/log/syslog" 200
|
||||
die "setup/start.sh failed!"
|
||||
local failure="true"
|
||||
|
||||
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
|
||||
}
|
||||
|
||||
|
@ -26,7 +26,7 @@ dump_log() {
|
||||
tail -$lines "$log_file"
|
||||
else
|
||||
H1 "$title"
|
||||
tail "$log_file"
|
||||
cat "$log_file"
|
||||
fi
|
||||
}
|
||||
|
||||
@ -95,7 +95,7 @@ travis_fix_nsd() {
|
||||
fi
|
||||
|
||||
# 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
|
||||
# control-enable /etc/nsd/nsd.conf" returns "yes", so we explicitly
|
||||
# set it here.
|
||||
|
Loading…
Reference in New Issue
Block a user