add tags to each package install

This commit is contained in:
Matthew Stobbs
2025-02-22 16:26:41 -07:00
parent b25f6dc207
commit b83a79a13d
6 changed files with 4 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
# vim: set filetype=yaml.ansible :
---
- name: Install appimage
- name: Install appimage {{ pkg }}
become: "{{ ext_become }}"
block:
- name: Ensure appimage path exists

View File

@@ -1,6 +1,6 @@
# vim: set filetype=yaml.ansible
---
- name: Install cargo pkg
- name: Install cargo {{ pkg }}
become: "{{ ext_become }}"
community.general.cargo:
name: "{{ pkg.name | default(pkg) }}"

View File

@@ -40,4 +40,3 @@
loop_var: pkg
ansible.builtin.include_tasks:
file: appimage.yml

View File

@@ -1,6 +1,6 @@
# vim: set filetype=yaml.ansible :
---
- name: Install npm pkg
- name: Install npm {{ pkg }}
become: "{{ ext_become }}"
community.general.npm:
global: true

View File

@@ -1,6 +1,6 @@
# vim: set filetype=yaml.ansible :
---
- name: Install pipx pkg
- name: Install pipx {{ pkg }}
become: "{{ ext_become }}"
environment:
PIPX_HOME: "{{ path.pipx }}"

View File