20 lines
398 B
YAML
20 lines
398 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
|
|
|
|
- name: Agent ID
|
|
ansible.builtin.include_tasks:
|
|
file: tasks/agent_id.yaml
|
|
|
|
|
|
vars: # ToDo: remove the below t4est vars
|
|
api_scanagents: tools/scanagents
|