From 14ca48abffc47a44cab4b9211d3d3ec4a8633e2f Mon Sep 17 00:00:00 2001 From: Kris Crawford Date: Wed, 15 Nov 2023 09:57:38 -0500 Subject: [PATCH] Updating salt domain --- README.md | 2 +- script.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 03c0746..d4c3984 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ ## To add new host to salt ``` -curl --location --show-error --silent -O https://git.10bit.link/kcrawford/saltBootstrap/raw/branch/main/script.sh && echo '42c50a7bd4a18464057af52dc03d86c1dc998644 script.sh' | sha1sum --check --status && sudo bash ./script.sh +curl --location --show-error --silent -O https://git.10bit.link/kcrawford/saltBootstrap/raw/branch/main/script.sh && echo '17186dd10cb982dac23ee1cdf9424ae0a62cb22c script.sh' | sha1sum --check --status && sudo bash ./script.sh ``` diff --git a/script.sh b/script.sh index e2b207b..6d7f31e 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: salt-master.io" | tee /etc/salt/minion.d/override.conf +echo "master: salt.lan" | tee /etc/salt/minion.d/override.conf # Restart minion service systemctl restart salt-minion