diff --git a/cluster.sh b/cluster.sh index 21ef41e..5a7c125 100755 --- a/cluster.sh +++ b/cluster.sh @@ -229,7 +229,7 @@ EOF # configure the LXD Daemon with our preseed. cat "$CLUSTER_MASTER_LXD_INIT" | ssh "ubuntu@$FQDN" lxd init --preseed - # not ensure the service is active on the remote host. + # ensure the lxd service is available over the network, then add a lxc remote, then switch the active remote to it. if wait-for-it -t 20 "$FQDN:8443"; then # now create a remote on your local LXC client and switch to it. # the software will now target the new cluster. diff --git a/deployment/www/go.sh b/deployment/www/go.sh index 4e01b74..6dbffc3 100755 --- a/deployment/www/go.sh +++ b/deployment/www/go.sh @@ -85,14 +85,14 @@ if [ "$RUN_SERVICES" = true ]; then # open bowser tabs. if [ "$DEPLOY_GHOST" = true ]; then - xdg-open "http://$FQDN" + xdg-open "http://$FQDN" > /dev/null 2>&1 fi if [ "$DEPLOY_NEXTCLOUD" = true ]; then - xdg-open "http://$NEXTCLOUD_FQDN" + xdg-open "http://$NEXTCLOUD_FQDN" > /dev/null 2>&1 fi if [ "$DEPLOY_GITEA" = true ]; then - xdg-open "http://$GITEA_FQDN" + xdg-open "http://$GITEA_FQDN" > /dev/null 2>&1 fi fi