8000 Update bootstrap URLs quickstart.rst · saltstack/salt@785197c · GitHub
[go: up one dir, main page]

Skip to content

Commit 785197c

Browse files
jpoikelatwangboy
authored andcommitted
Update bootstrap URLs quickstart.rst
use GitHub URLs to download bootstrap scripts
1 parent 314d9bf commit 785197c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/topics/tutorials/quickstart.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ for any OS with a Bourne shell:
3131

3232
.. code-block:: bash
3333
34-
curl -L https://bootstrap.saltstack.com -o bootstrap_salt.sh
34+
curl -L https://github.com/saltstack/salt-bootstrap/releases/latest/download/bootstrap-salt.sh -o bootstrap_salt.sh
3535
sudo sh bootstrap_salt.sh
3636
3737
Before run the script, it is a good practice to verify the checksum of the downloaded
@@ -40,7 +40,7 @@ file. You can verify the checksum with SHA256 by running this command:
4040
.. code-block:: bash
4141
4242
test $(sha256sum bootstrap_salt.sh | awk '{print $1}') \
43-
= $(curl -sL https://bootstrap.saltproject.io/sha256 | cat -) \
43+
= $(curl -sL https://github.com/saltstack/salt-bootstrap/releases/latest/download/bootstrap-salt.sh.sha256 | cat -) \
4444
&& echo "OK" \
4545
|| echo "File does not match checksum"
4646
@@ -53,7 +53,7 @@ file. You can verify the checksum with SHA256 by running this command:
5353

5454
.. code-block:: bash
5555
56-
curl -L https://bootstrap.saltproject.io | sudo sh -s --
56+
curl -L https://github.com/saltstack/salt-bootstrap/releases/latest/download/bootstrap-salt.sh | sudo sh -s --
5757
5858
See the `salt-bootstrap`_ documentation for other one liners. When using `Vagrant`_
5959
to test out salt, the `Vagrant salt provisioner`_ will provision the VM for you.

0 commit comments

Comments
 (0)
0