add tags to each package install
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
# vim: set filetype=yaml.ansible :
|
# vim: set filetype=yaml.ansible :
|
||||||
---
|
---
|
||||||
- name: Install appimage
|
- name: Install appimage {{ pkg }}
|
||||||
become: "{{ ext_become }}"
|
become: "{{ ext_become }}"
|
||||||
block:
|
block:
|
||||||
- name: Ensure appimage path exists
|
- name: Ensure appimage path exists
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# vim: set filetype=yaml.ansible
|
# vim: set filetype=yaml.ansible
|
||||||
---
|
---
|
||||||
- name: Install cargo pkg
|
- name: Install cargo {{ pkg }}
|
||||||
become: "{{ ext_become }}"
|
become: "{{ ext_become }}"
|
||||||
community.general.cargo:
|
community.general.cargo:
|
||||||
name: "{{ pkg.name | default(pkg) }}"
|
name: "{{ pkg.name | default(pkg) }}"
|
||||||
|
|||||||
@@ -40,4 +40,3 @@
|
|||||||
loop_var: pkg
|
loop_var: pkg
|
||||||
ansible.builtin.include_tasks:
|
ansible.builtin.include_tasks:
|
||||||
file: appimage.yml
|
file: appimage.yml
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# vim: set filetype=yaml.ansible :
|
# vim: set filetype=yaml.ansible :
|
||||||
---
|
---
|
||||||
- name: Install npm pkg
|
- name: Install npm {{ pkg }}
|
||||||
become: "{{ ext_become }}"
|
become: "{{ ext_become }}"
|
||||||
community.general.npm:
|
community.general.npm:
|
||||||
global: true
|
global: true
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# vim: set filetype=yaml.ansible :
|
# vim: set filetype=yaml.ansible :
|
||||||
---
|
---
|
||||||
- name: Install pipx pkg
|
- name: Install pipx {{ pkg }}
|
||||||
become: "{{ ext_become }}"
|
become: "{{ ext_become }}"
|
||||||
environment:
|
environment:
|
||||||
PIPX_HOME: "{{ path.pipx }}"
|
PIPX_HOME: "{{ path.pipx }}"
|
||||||
|
|||||||
Reference in New Issue
Block a user