From 3b2e1630d6cfa56005fc7266198e20d7390cab71 Mon Sep 17 00:00:00 2001 From: Pedro Algarvio Date: Tue, 22 Jan 2013 17:06:50 +0000 Subject: [PATCH] Add another one liner, `fetch`. --- README.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.rst b/README.rst index 45a2027..a367a59 100644 --- a/README.rst +++ b/README.rst @@ -44,6 +44,14 @@ If you already have python installed, then it's as easy as: python -m urllib "http://bootstrap.saltstack.org" | sudo sh -s git develop +On a FreeBSD base system you usually don't have either of the above binaries +available. You **do** have ``fetch`` available though: + +.. code:: console + + fetch -o - http://bootstrap.saltstack.org | sudo sh + + Adding support for other operating systems ------------------------------------------