diff options
-rwxr-xr-x | installer/opengnsys_installer.sh | 2 | ||||
-rwxr-xr-x | installer/opengnsys_update.sh | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/installer/opengnsys_installer.sh b/installer/opengnsys_installer.sh index b7752655..95cd86ea 100755 --- a/installer/opengnsys_installer.sh +++ b/installer/opengnsys_installer.sh @@ -1600,6 +1600,8 @@ function installationSummary() echoAndLog "It's strongly recommended to synchronize this server with an NTP server." echoAndLog "Review or edit all configuration files." echoAndLog "Insert DHCP configuration data and restart service." + echoAndLog "Optional: If you want to use BURG as boot manager, run" + echoAndLog " \"curl $DOWNLOADURL/burg.tgz -o $INSTALL_TARGET/client/lib/burg.tgz\" as root." echoAndLog "Optional: Log-in as Web Console admin user." echoAndLog " - Review default Organization data and assign access to users." echoAndLog "Log-in as Web Console organization user." diff --git a/installer/opengnsys_update.sh b/installer/opengnsys_update.sh index 5d7b8ec8..55620b05 100755 --- a/installer/opengnsys_update.sh +++ b/installer/opengnsys_update.sh @@ -1147,6 +1147,9 @@ function updateSummary() echoAndLog " - MySQL must be reconfigured, run next code as DB root user and restart service:" echoAndLog " $MYSQLCONFIG" fi + echoAndLog " - If you want to use BURG as boot manager, run following command as root:" + echoAndLog " curl $DOWNLOADURL/burg.tgz -o $INSTALL_TARGET/client/lib/burg.tgz" + echo } |