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

Dump /var/log/syslog when start.sh fails

This commit is contained in:
downtownallday 2020-06-09 22:06:25 -04:00
parent ca33614cbf
commit e498b47d53
2 changed files with 19 additions and 2 deletions

View File

@ -60,6 +60,7 @@ before_miab_install() {
update_hosts_for_private_ip || die "Could not update /etc/hosts" update_hosts_for_private_ip || die "Could not update /etc/hosts"
# update package lists before installing anything # update package lists before installing anything
H2 "apt-get update"
apt-get update || die "apt-get update failed!" apt-get update || die "apt-get update failed!"
# install prerequisites # install prerequisites
@ -87,10 +88,10 @@ 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"
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
# install Docker # install Docker
H2 "Install Docker" H2 "Install Docker"
@ -100,7 +101,10 @@ before_miab_install() {
miab_install() { miab_install() {
H1 "MIAB-LDAP INSTALL" H1 "MIAB-LDAP INSTALL"
setup/start.sh -v || die "setup/start.sh failed!" if ! setup/start.sh; then
dump_log "/var/log/syslog" 200
die "setup/start.sh failed!"
fi
} }

View File

@ -17,6 +17,19 @@ H2() {
echo "*** $msg ***" echo "*** $msg ***"
} }
dump_log() {
local log_file="$1"
local lines="$2"
local title="DUMP OF $log_file"
if [ ! -z "$lines" ]; then
H1 "$title (last $lines lines)"
tail -$lines "$log_file"
else
H1 "$title"
tail "$log_file"
fi
}
install_qa_prerequisites() { install_qa_prerequisites() {
# python3-dnspython: is used by the python scripts in 'tests' and is # python3-dnspython: is used by the python scripts in 'tests' and is
# not installed by setup # not installed by setup