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', '>')
|