From bd2834bc63db920c62fdade7e90f9458967feb52 Mon Sep 17 00:00:00 2001 From: Victor Hansson Date: Wed, 20 May 2026 13:39:06 +0300 Subject: [PATCH] M #-: Update download link + fix mac setup * Updates downlod link for 7.2.1 config * Fixes hugo automatic setup script for mac Signed-off-by: Victor Hansson --- .../opennebula_services_configuration/fireedge.md | 3 +++ setup.sh | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/content/product/operation_references/opennebula_services_configuration/fireedge.md b/content/product/operation_references/opennebula_services_configuration/fireedge.md index 0c02ccd89..49741e8bd 100644 --- a/content/product/operation_references/opennebula_services_configuration/fireedge.md +++ b/content/product/operation_references/opennebula_services_configuration/fireedge.md @@ -21,6 +21,9 @@ weight: "3" The OpenNebula FireEdge server provides a **next-generation web-management interface** for remote OpenNebula Cluster provisioning as well as additional functionality to Sunstone. It’s a dedicated daemon installed by default as part of the [Single Front-end Installation]({{% relref "frontend_install" %}}), but can be deployed independently on a different machine. The server is distributed as an operating system package `opennebula-fireedge` with the system service `opennebula-fireedge`. +{{< alert title="Note" type="info" >}} +We are continually expanding the feature set of FireEdge Sunstone, and hence its configuration files are in constant change. In versions 7.2.1 and later, configuration files in ``/etc/one/fireedge/`` can be replaced by the ones that can be downloaded from [here](https://bit.ly/721-config) in order to activate the latest features.{{< /alert >}} + ## Main Features - **Guacamole Proxy** for Sunstone to remotely access the VMs (incl., VNC, RDP, and SSH) diff --git a/setup.sh b/setup.sh index 7200c6f9c..e72afb69e 100755 --- a/setup.sh +++ b/setup.sh @@ -8,9 +8,9 @@ ARCH="$(uname -m)" install_hugo_mac() { TMP_DIR=$(mktemp -d) cd "$TMP_DIR" - wget https://github.com/gohugoio/hugo/releases/download/v0.155.3/hugo_extended_0.155.3_darwin-universal.tar.gz - tar -xzf hugo_extended_0.155.3_darwin-universal.tar.gz - sudo mv hugo /usr/local/bin/ + PKG="hugo_0.155.3_darwin-universal.pkg" + wget "https://github.com/gohugoio/hugo/releases/download/v0.155.3/$PKG" + sudo installer -pkg "$PKG" -target / cd - rm -rfd "$TMP_DIR" hugo version