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 : # 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

View File

@@ -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) }}"

View File

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

View File

@@ -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

View File

@@ -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 }}"

View File