diff --git a/content/product/operation_references/opennebula_services_configuration/fireedge.md b/content/product/operation_references/opennebula_services_configuration/fireedge.md index 0c02ccd8..49741e8b 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 7200c6f9..e72afb69 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