From ba28c5b93295e449cc090e2ffb62513fb0201fd3 Mon Sep 17 00:00:00 2001 From: Pedro Algarvio Date: Thu, 5 Jun 2014 08:35:02 +0100 Subject: [PATCH] Make use of the now live https://bootstrap.saltstack.com --- README.rst | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/README.rst b/README.rst index 11ff342..028c732 100644 --- a/README.rst +++ b/README.rst @@ -42,7 +42,7 @@ Using ``curl`` to install latest git: .. code:: console - curl -L http://raw.githubusercontent.com/saltstack/salt-bootstrap/stable/bootstrap-salt.sh -o install_salt.sh + curl -L https://bootstrap.saltstack.com -o install_salt.sh sudo sh install_salt.sh git develop @@ -50,7 +50,7 @@ If you have certificate issues using ``curl``, try the following: .. code:: console - curl -L http://raw.githubusercontent.com/saltstack/salt-bootstrap/stable/bootstrap-salt.sh -o install_salt.sh + curl -L https://bootstrap.saltstack.com -o install_salt.sh sudo sh install_salt.sh git develop @@ -58,7 +58,7 @@ Using ``wget`` to install your distribution's stable packages: .. code:: console - wget -O install_salt.sh http://raw.githubusercontent.com/saltstack/salt-bootstrap/stable/bootstrap-salt.sh + wget -O install_salt.sh https://bootstrap.saltstack.com sudo sh install_salt.sh @@ -66,7 +66,7 @@ Install a specific version from git using ``wget``: .. code:: console - wget -O install_salt.sh http://raw.githubusercontent.com/saltstack/salt-bootstrap/stable/bootstrap-salt.sh + wget -O install_salt.sh https://bootstrap.saltstack.com sudo sh install_salt.sh -P git v0.16.4 @@ -74,7 +74,7 @@ If you already have python installed, ``python 2.6``, then it's as easy as: .. code:: console - python -m urllib "http://raw.githubusercontent.com/saltstack/salt-bootstrap/stable/bootstrap-salt.sh" > install_salt.sh + python -m urllib "https://bootstrap.saltstack.com" > install_salt.sh sudo sh install_salt.sh git develop @@ -82,7 +82,7 @@ All python versions should support the following one liner: .. code:: console - python -c 'import urllib; print urllib.urlopen("http://raw.githubusercontent.com/saltstack/salt-bootstrap/stable/bootstrap-salt.sh").read()' > install_salt.sh + python -c 'import urllib; print urllib.urlopen("https://bootstrap.saltstack.com").read()' > install_salt.sh sudo sh install_salt.sh git develop @@ -91,7 +91,7 @@ have ``fetch`` available though: .. code:: console - fetch -o install_salt.sh http://raw.githubusercontent.com/saltstack/salt-bootstrap/stable/bootstrap-salt.sh + fetch -o install_salt.sh https://bootstrap.saltstack.com sudo sh install_salt.sh @@ -99,7 +99,7 @@ If all you want is to install a ``salt-master`` using latest git: .. code:: console - curl -o install_salt.sh -L http://raw.githubusercontent.com/saltstack/salt-bootstrap/stable/bootstrap-salt.sh + curl -o install_salt.sh -L https://bootstrap.saltstack.com sudo sh install_salt.sh -M -N git develop @@ -107,7 +107,7 @@ If you want to install a specific release version (based on the git tags): .. code:: console - curl -o install_salt.sh -L http://raw.githubusercontent.com/saltstack/salt-bootstrap/stable/bootstrap-salt.sh + curl -o install_salt.sh -L https://bootstrap.saltstack.com sudo sh install_salt.sh git v0.16.4 @@ -115,7 +115,7 @@ To install a specific branch from a git fork: .. code:: console - curl -o install_salt.sh.sh -L http://raw.githubusercontent.com/saltstack/salt-bootstrap/stable/bootstrap-salt.sh + curl -o install_salt.sh.sh -L https://bootstrap.saltstack.com sudo sh install_salt.sh.sh -g https://github.com/myuser/salt.git git mybranch @@ -136,7 +136,7 @@ Installing the latest develop branch of Salt: .. code:: console - curl -L http://raw.githubusercontent.com/saltstack/salt-bootstrap/stable/bootstrap-salt.sh | sudo sh -s -- git develop + curl -L https://bootstrap.saltstack.com | sudo sh -s -- git develop Any of the example above which use two-lines can be made to run in a single-line configuration with minor modifications.