From 867da00acdfa69ff8b6b244e4086d8b2879c1e92 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Mon, 21 Feb 2022 14:26:55 +0200 Subject: fix(roles/rust-rustup): install build-essential It's required to actually build anything with the Rust toolchain. Sponsored-by: author --- ansible/roles/rust-rustup/tasks/main.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'ansible/roles') diff --git a/ansible/roles/rust-rustup/tasks/main.yml b/ansible/roles/rust-rustup/tasks/main.yml index de43fa5..d13c9ed 100644 --- a/ansible/roles/rust-rustup/tasks/main.yml +++ b/ansible/roles/rust-rustup/tasks/main.yml @@ -1,7 +1,8 @@ -- name: "install curl" +- name: "install necessary packagers" apt: - name: curl - state: present + name: + - build-essential + - curl - name: "install Rust toolchain using rustup" shell: | set -eu -- cgit v1.2.1