From 3128596d81a97e7af7147bb2cb0b86906eecc69f Mon Sep 17 00:00:00 2001 From: Jon Date: Mon, 19 Feb 2024 03:31:56 +0930 Subject: [PATCH] feat(agent): Create cache directory !1 --- playbooks/agent.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 playbooks/agent.yaml diff --git a/playbooks/agent.yaml b/playbooks/agent.yaml new file mode 100644 index 0000000..e74f29e --- /dev/null +++ b/playbooks/agent.yaml @@ -0,0 +1,11 @@ +- 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