From 16771de27d02cbaba2bc9a37d5a3b5263c48c147 Mon Sep 17 00:00:00 2001 From: Radovan Sroka Date: Mon, 11 Nov 2024 17:19:31 +0100 Subject: [PATCH] Fix whens on one line Signed-off-by: Radovan Sroka --- README.md | 2 -- tasks/main.yml | 26 ++++++++------------------ 2 files changed, 8 insertions(+), 20 deletions(-) diff --git a/README.md b/README.md index 5c5832b..f16bc8b 100644 --- a/README.md +++ b/README.md @@ -13,8 +13,6 @@ This is an ansible role that installs and configures the [Advanced Intrusion Det * It runs AIDE integrity checks on the remote nodes * It updates the AIDE databases and stores them on the controller node -### Available tags to control and use the role - ## What does this role not do for you? * It does not explain how to create a good AIDE configuration that suits your requirements; that task remains for you to accomplish diff --git a/tasks/main.yml b/tasks/main.yml index 70ab28e..cc7484e 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -23,17 +23,13 @@ src: "{{ aide_db_template }}" dest: "/etc/{{ __aide_config }}" mode: "0400" - when: - - aide_db_template is defined - - aide_db_template is not none - - aide_db_template is string + when: aide_db_template is not none # - name: Print Header # ansible.builtin.shell: head /etc/aide.conf || true - name: Initialize AIDE database - when: - - aide_init | bool + when: aide_init | bool block: - name: Initialize AIDE database ansible.builtin.command: @@ -49,19 +45,16 @@ group: root mode: "0440" force: true - when: - - not aide_fetch_db | bool + when: not aide_fetch_db | bool - name: Remove remote AIDE database file ansible.builtin.file: path: "{{ __aide_db_new_name }}" state: absent - when: - - not aide_fetch_db | bool + when: not aide_fetch_db | bool - name: Fetch AIDE database - when: - - aide_fetch_db | bool + when: aide_fetch_db | bool block: - name: Fetch AIDE database ansible.builtin.fetch: @@ -74,8 +67,7 @@ state: absent - name: Check AIDE integrity - when: - - aide_check | bool + when: aide_check | bool block: - name: Copy AIDE reference database ansible.builtin.copy: @@ -85,8 +77,7 @@ owner: root group: root mode: "0440" - when: - - aide_fetch_db | bool + when: aide_fetch_db | bool - name: Check against AIDE reference database ansible.builtin.command: @@ -94,8 +85,7 @@ changed_when: true - name: Update AIDE database and fetch it - when: - - aide_update | bool + when: aide_update | bool block: - name: Update AIDE database ansible.builtin.command: