From 2662fddddca501bc866a1b3118cf198a4bbd779d Mon Sep 17 00:00:00 2001 From: Gabriel Nagy Date: Sat, 31 Jul 2021 13:30:00 +0300 Subject: [PATCH] Update README.md --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4869d70..a283317 100644 --- a/README.md +++ b/README.md @@ -20,14 +20,22 @@ script which can be used with little to no external dependencies ### Dependencies * A non-Windows platform for which Puppet provides official packages (see the full list [here](https://puppet.com/docs/puppet/latest/system_requirements.html#supported_operating_systems-packaged-platforms)) -* one of wget/curl/fetch/perl-LWP-Simple in order to download packages +* One of wget/curl/fetch/perl-LWP-Simple in order to download packages +* `bash` (probably at least version 3) +* Ability to run the script as `root` ### Usage +### Install with curl ```sh curl -sSL https://raw.githubusercontent.com/puppetlabs/install-puppet/main/install.sh | bash ``` +### Install with wget +```sh +wget -qO - https://raw.githubusercontent.com/puppetlabs/install-puppet/main/install.sh | bash +``` + Piping to `bash` is a controversial practice, so you are encouraged to inspect the [contents of the script](https://github.com/puppetlabs/install-puppet/blob/main/install.sh)