Compare commits

..

1 Commits

Author SHA1 Message Date
Slaviša Arežina
319a975fed Update default credentials in cronicle.json 2025-10-29 14:17:06 +01:00
3 changed files with 3 additions and 7 deletions

View File

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

View File

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

View File

@@ -497,8 +497,6 @@ if ! command -v virt-customize &>/dev/null; then
msg_info "Installing Pre-Requisite libguestfs-tools onto Host" msg_info "Installing Pre-Requisite libguestfs-tools onto Host"
apt-get -qq update >/dev/null apt-get -qq update >/dev/null
apt-get -qq install libguestfs-tools lsb-release -y >/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" msg_ok "Installed libguestfs-tools successfully"
fi fi