Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
6 changes: 3 additions & 3 deletions setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading