From 03372043d81716dee4d5d5ee49b19de5136355fa Mon Sep 17 00:00:00 2001 From: Benjamin Brahmer Date: Sat, 30 Sep 2023 16:07:41 +0200 Subject: [PATCH] create log directory for ffshmon --- roles/ffshmon/tasks/install.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/roles/ffshmon/tasks/install.yml b/roles/ffshmon/tasks/install.yml index 2bcd727..4b6a16b 100644 --- a/roles/ffshmon/tasks/install.yml +++ b/roles/ffshmon/tasks/install.yml @@ -1,6 +1,11 @@ - name: Install curl ansible.builtin.apt: name: ['curl'] +- name: Create log directory + ansible.builtin.file: + path: /var/log/ffshmon + state: directory + mode: '0755' - name: Clone ffshmon repository ansible.builtin.git: repo: https://github.com/ffsh/ffshmon.git