From 175d743c32b0d4606852062f25f94038cb9a22c4 Mon Sep 17 00:00:00 2001 From: Derek Smith Date: Wed, 3 Aug 2022 10:54:03 -0400 Subject: [PATCH] Comment updates and output suppression for xdg-ope --- cluster.sh | 2 +- deployment/www/go.sh | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) 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