2022-01-08 15:40:13 +01:00
|
|
|
---
|
2022-08-05 14:03:38 +02:00
|
|
|
# Copyright (c) Ansible Project
|
|
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2022-01-08 15:40:13 +01:00
|
|
|
- block:
|
|
|
|
- name: Install cargo
|
|
|
|
package:
|
|
|
|
name: cargo
|
|
|
|
state: present
|
|
|
|
- set_fact:
|
|
|
|
has_cargo: true
|
|
|
|
when:
|
2022-05-22 17:20:30 +02:00
|
|
|
- ansible_system != 'FreeBSD'
|
2022-01-08 15:40:13 +01:00
|
|
|
- ansible_distribution != 'MacOSX'
|
|
|
|
- ansible_distribution != 'RedHat' or ansible_distribution_version is version('8.0', '>=')
|
|
|
|
- ansible_distribution != 'CentOS' or ansible_distribution_version is version('7.0', '>=')
|
|
|
|
- ansible_distribution != 'Ubuntu' or ansible_distribution_version is version('18', '>=')
|
2022-05-22 17:20:30 +02:00
|
|
|
|
|
|
|
- block:
|
|
|
|
- name: Install rust (containing cargo)
|
|
|
|
package:
|
|
|
|
name: rust
|
|
|
|
state: present
|
|
|
|
- set_fact:
|
|
|
|
has_cargo: true
|
|
|
|
when:
|
|
|
|
- ansible_system == 'FreeBSD' and ansible_distribution_version is version('13.0', '>')
|
2023-10-06 07:41:02 +02:00
|
|
|
|
|
|
|
- block:
|
|
|
|
- name: Download rustup
|
|
|
|
get_url:
|
|
|
|
url: https://sh.rustup.rs
|
|
|
|
dest: /tmp/sh.rustup.rs
|
|
|
|
mode: "0750"
|
|
|
|
force: true
|
|
|
|
- name: Install rustup cargo
|
|
|
|
command: /tmp/sh.rustup.rs -y
|
|
|
|
- set_fact:
|
|
|
|
rustup_cargo_bin: "{{ lookup('env', 'HOME') }}/.cargo/bin/cargo"
|
|
|
|
when:
|
|
|
|
- ansible_distribution != 'CentOS' or ansible_distribution_version is version('7.0', '>=')
|