From 40505a8c7b47d0708ec53f387496e6276cce19d2 Mon Sep 17 00:00:00 2001 From: kcrawford Date: Mon, 19 Sep 2022 18:31:04 +0000 Subject: [PATCH] Update 'script.sh' Update override to contain a hostname instead of IP. --- script.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script.sh b/script.sh index 44b9bec..aa42211 100644 --- a/script.sh +++ b/script.sh @@ -9,7 +9,7 @@ curl -o /tmp/bootstrap-salt.sh -L https://bootstrap.saltproject.io if [ -e /tmp/bootstrap-salt.sh ]; then bash /tmp/bootstrap-salt.sh; fi # Point minion to master -echo "master: 192.168.10.129" | tee /etc/salt/minion.d/override.conf +echo "master: salt-master.local" | tee /etc/salt/minion.d/override.conf # Restart minion service systemctl restart salt-minion