Compare commits

..

3 Commits

Author SHA1 Message Date
CanbiZ
dc5c0fdfb5 Add workaround for libguestfs issue on Proxmox VE 9.0
Installs dhcpcd-base as a workaround for a known libguestfs issue on Proxmox VE 9.0 during prerequisite installation.
2025-10-29 15:42:48 +01:00
CanbiZ
ee02bc1977 Add missing dependencies to libretranslate-install.sh
Added missing dependencies for LibreTranslate installation.
2025-10-29 15:37:42 +01:00
CanbiZ
fda22e8890 typo 2025-10-29 14:33:22 +01:00
3 changed files with 7 additions and 3 deletions

View File

@@ -28,8 +28,8 @@
}
],
"default_credentials": {
"username": "admin",
"password": "admin"
"username": null,
"password": null
},
"notes": [
{

View File

@@ -16,8 +16,10 @@ update_os
msg_info "Installing dependencies"
$STD apt install -y \
pkg-config \
build-essentials \
build-essential \
g++ \
cmake \
libsentencepiece-dev \
libicu-dev
msg_ok "Installed dependencies"

View File

@@ -497,6 +497,8 @@ if ! command -v virt-customize &>/dev/null; then
msg_info "Installing Pre-Requisite libguestfs-tools onto Host"
apt-get -qq update >/dev/null
apt-get -qq install libguestfs-tools lsb-release -y >/dev/null
# Workaround for Proxmox VE 9.0 libguestfs issue
apt-get -qq install dhcpcd-base -y >/dev/null 2>&1 || true
msg_ok "Installed libguestfs-tools successfully"
fi