- giving things a better structure - better documentation with the way things need to be as a standard
11 lines
334 B
YAML
11 lines
334 B
YAML
# vim: set filetype=yaml.ansible
|
|
---
|
|
- name: Install cargo
|
|
become: "{{ install_become }}"
|
|
become_user: "{{ install_become_user }}"
|
|
community.general.cargo:
|
|
name: "{{ pkg.name | default(pkg) }}"
|
|
version: "{{ pkg.version | default(omit) }}"
|
|
locked: "{{ pkg.locked | default(false) }}"
|
|
path: "{{ install_prefix }}"
|