add ansible curl installers
This commit is contained in:
parent
f908ca73da
commit
66fa751b2a
2 changed files with 14 additions and 3 deletions
6
ansible/roles/packages/tasks/curlers.yml
Normal file
6
ansible/roles/packages/tasks/curlers.yml
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
- name: Execute curl installers
|
||||
ansible.builtin.shell: "curl -sSfL {{ item }} | bash"
|
||||
loop: "{{ curl_install_urls }}"
|
||||
tags:
|
||||
- curl
|
||||
|
|
@ -46,10 +46,15 @@
|
|||
tags:
|
||||
- rhel
|
||||
|
||||
- name: Install Rust packages
|
||||
ansible.builtin.import_tasks: rust.yml
|
||||
- name: Curl installers
|
||||
become: false
|
||||
ansible.builtin.import_tasks: curlers.yml
|
||||
vars:
|
||||
curl_install_urls:
|
||||
- https://raw.githubusercontent.com/aquaproj/aqua-installer/v3.0.1/aqua-installer
|
||||
|
||||
tags:
|
||||
- rust
|
||||
- curl
|
||||
|
||||
- name: Install Python packages
|
||||
ansible.builtin.import_tasks: python.yml
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue