@Tom-Elliott said in Fog 1.5.10 Install error libcurl4 Failed during install:
@jaumeramos Would you be willing to test:
diff --git a/lib/common/functions.sh b/lib/common/functions.sh index b20b0e482..05f40d08c 100755 --- a/lib/common/functions.sh +++ b/lib/common/functions.sh @@ -725,6 +725,9 @@ installPackages() { if [[ $OSVersion -gt 17 ]]; then packages="${packages// libcurl3 / libcurl4 }">>$error_log 2>&1 fi + if [[ $OSVersion -ge 22 ]]; then + packages="${packages// libcurl4 / libcurl4t64 }">>$error_log 2>&1 + fi if [[ $linuxReleaseName_lower == +(*ubuntu*) && $OSVersion -ge 18 ]]; then # Fix missing universe section for Ubuntu 18.04 LIVE LANG='en_US.UTF-8' LC_ALL='en_US.UTF-8' add-apt-repository -y universe >>$error_log 2>&1
Changing the functions to this code?
I’m hoping to catch as 17-21 worked fine with lubcurl4, but 22 needs libcurl4t64
It’s ugly, I have pushed if you just want to pull from dev-branch
Hi,
The dev-branch worked well for me, thanks!
Ubuntu MATE 24.04
6.8.0-31-generic
All packages fully updated before running the FOG installer (for better or worse, haha)
Thanks again for all the work on this project, it has been great to see it continue on over the years,
Dave