From 504e6784da52dde34371769e45e0a7b02b297407 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Thu, 30 Jun 2022 06:38:05 +0200 Subject: [PATCH] Add recommended curl options to rustup --- playbook.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playbook.yml b/playbook.yml index 692b56c..8e89fc9 100644 --- a/playbook.yml +++ b/playbook.yml @@ -419,7 +419,7 @@ when: distro == 'archlinux' - name: install rustup on ubuntu - shell: curl https://sh.rustup.rs -sSf | sh -s -- -y --profile=minimal + shell: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile=minimal args: creates: /var/lib/rust_build/.cargo/bin/rustup become: true