working on nerdfonts still
This commit is contained in:
@@ -6,6 +6,9 @@
|
||||
- archive.name is defined
|
||||
- archive.url is defined
|
||||
block:
|
||||
- name: Dump archive vars
|
||||
ansible.builtin.debug:
|
||||
var: archive
|
||||
- name: Extract archive to given path
|
||||
block:
|
||||
- name: Ensure directory exists
|
||||
@@ -15,8 +18,8 @@
|
||||
state: directory
|
||||
path: "{{ archive.extract_to }}"
|
||||
mode: "{{ archive.mode | default('0755') }}"
|
||||
owner: "{{ archive.owner | default(ansible_user_id)}}"
|
||||
group: "{{ archive.group | default(ansible_user_gid) }}"
|
||||
owner: "{{ archive.owner | default(ansible_facts['user_id']) }}"
|
||||
group: "{{ archive.group | default(ansible_facts['user_gid']) }}"
|
||||
|
||||
- name: Download archive to cache
|
||||
ansible.builtin.get_url:
|
||||
|
||||
Reference in New Issue
Block a user