12 lines
222 B
YAML
12 lines
222 B
YAML
- name: Fetch API Data
|
|
hosts: localhost
|
|
become: false
|
|
gather_facts: false
|
|
|
|
tasks:
|
|
|
|
- name: Create API Cache Directory
|
|
ansible.builtin.file:
|
|
path: "{{ nfc_c_path_cache }}"
|
|
state: directory
|