Replies: 5 comments 1 reply
-
|
Same problem here, but I found out that the git needs to be previously installed to work. |
Beta Was this translation helpful? Give feedback.
-
|
Manually installing git before executing the install command indeed worked. Weird, since in step 1 the script reports that git was installed successfully. |
Beta Was this translation helpful? Give feedback.
-
|
Hi everyone, the part of the installer that handles dependency installation currently works like this: BASIC_DEPS=("dialog" "curl" "git")
for pkg in "${BASIC_DEPS[@]}"; do
if ! dpkg -l | grep -qw "$pkg"; then
if apt-get install -y "$pkg" > /dev/null 2>&1; then
update_config "$pkg" "installed"
else
msg_error "Failed to install $pkg. Please install it manually."
update_config "$pkg" "failed"
return 1
fi
else
update_config "$pkg" "already_installed"
fi
doneHowever, it seems that on some systems git is not being installed correctly. |
Beta Was this translation helpful? Give feedback.
-
|
ok, great! Thanks. |
Beta Was this translation helpful? Give feedback.
-
|
Any news on this ? I'm getting the same error, how do you install git manually ? |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
on 2 out of my 4 hosts I'm unable to install ProxMenux. When the installation starts it errors out with:
Installing ProxMenux: Step 1 of 5
Any idea how to fix this?
Frank.
Beta Was this translation helpful? Give feedback.
All reactions