Updating script to use new source

This commit is contained in:
Kris Crawford 2025-03-15 16:06:34 -04:00
parent 14ca48abff
commit 153eea6fb9
2 changed files with 2 additions and 2 deletions

2
README.md Normal file → Executable file
View File

@ -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 '17186dd10cb982dac23ee1cdf9424ae0a62cb22c script.sh' | sha1sum --check --status && sudo bash ./script.sh
curl --location --show-error --silent -O https://git.kcrawford.net/kcrawford/saltBootstrap/raw/branch/main/script.sh && echo '68244bbf2cd329708efaeb9bc4028e49ca217239 script.sh' | sha1sum --check --status && sudo bash ./script.sh
```

2
script.sh Normal file → Executable file
View File

@ -3,7 +3,7 @@
# Download bootstrap script from salt
curl -o /tmp/bootstrap-salt.sh -L https://bootstrap.saltproject.io
curl -o /tmp/bootstrap-salt.sh -L https://github.com/saltstack/salt-bootstrap/releases/latest/download/bootstrap-salt.sh
# Run bootstrap script
if [ -e /tmp/bootstrap-salt.sh ]; then bash /tmp/bootstrap-salt.sh; fi