diff --git a/tasks/appimage.yml b/tasks/appimage.yml index 57965bf..9a81d8d 100644 --- a/tasks/appimage.yml +++ b/tasks/appimage.yml @@ -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 diff --git a/tasks/cargo.yml b/tasks/cargo.yml index dd788b8..508bf72 100644 --- a/tasks/cargo.yml +++ b/tasks/cargo.yml @@ -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) }}" diff --git a/tasks/linux.yml b/tasks/linux.yml index cec1663..e4cf042 100644 --- a/tasks/linux.yml +++ b/tasks/linux.yml @@ -40,4 +40,3 @@ loop_var: pkg ansible.builtin.include_tasks: file: appimage.yml - diff --git a/tasks/npm.yml b/tasks/npm.yml index f07d1ab..e0c3a0a 100644 --- a/tasks/npm.yml +++ b/tasks/npm.yml @@ -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 diff --git a/tasks/pipx.yml b/tasks/pipx.yml index 38cc9e3..0f82031 100644 --- a/tasks/pipx.yml +++ b/tasks/pipx.yml @@ -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 }}" diff --git a/tasks/system.yml b/tasks/system.yml deleted file mode 100644 index e69de29..0000000