Mainsail install failure #12

Closed
opened 2020-09-09 16:31:59 +02:00 by schlick7 · 2 comments
schlick7 commented 2020-09-09 16:31:59 +02:00 (Migrated from github.com)

This install fails immediately with it complaining about a disable error.

I'm not sure what this code does in install_mainsail.sh, but I had to delete it and then Mainsail installed just fine

for service in "${disable_service[@]}"
do
if ; then
status_msg "Disabling $service service ..."
sudo apt-get disable $service
ok_msg "$service service disabled!"
fi
done

This install fails immediately with it complaining about a disable error. I'm not sure what this code does in install_mainsail.sh, but I had to delete it and then Mainsail installed just fine for service in "${disable_service[@]}" do if [[ $(dpkg-query -f'${Status}' --show $service 2>/dev/null) = *\ installed ]]; then status_msg "Disabling $service service ..." sudo apt-get disable $service ok_msg "$service service disabled!" fi done
dw-0 commented 2020-09-10 22:24:54 +02:00 (Migrated from github.com)

Thank you for reporting that issue.
I work on a fix right now. There went something wrong in the past, i haven't noticed it yet with testing because my system doesn't have haproxy or lighttpd installed. Therefore this step will always be skipped.

Thank you for reporting that issue. I work on a fix right now. There went something wrong in the past, i haven't noticed it yet with testing because my system doesn't have haproxy or lighttpd installed. Therefore this step will always be skipped.
dw-0 commented 2020-09-11 13:06:36 +02:00 (Migrated from github.com)

This issue should be fixed now and live in master!

This issue should be fixed now and live in master!
Sign in to join this conversation.