From 617969f39b099bc2090d5f14b30c84fc16bddb8e Mon Sep 17 00:00:00 2001 From: Paul Brabban Date: Sun, 20 Oct 2024 16:39:53 +0000 Subject: [PATCH] incorrect dependency may cause issues in CI --- roles/clamav/meta/main.yml | 1 - roles/clamav/tasks/main.yml | 7 ------- roles/xfce/meta/main.yml | 3 +++ 3 files changed, 3 insertions(+), 8 deletions(-) create mode 100644 roles/xfce/meta/main.yml diff --git a/roles/clamav/meta/main.yml b/roles/clamav/meta/main.yml index 2f9fb68..585c1f9 100644 --- a/roles/clamav/meta/main.yml +++ b/roles/clamav/meta/main.yml @@ -1,4 +1,3 @@ --- dependencies: - role: updates - - role: xfce diff --git a/roles/clamav/tasks/main.yml b/roles/clamav/tasks/main.yml index 7f3c6e6..0ce7db7 100644 --- a/roles/clamav/tasks/main.yml +++ b/roles/clamav/tasks/main.yml @@ -10,10 +10,3 @@ ansible.builtin.lineinfile: path: '{{ update_script }}' line: freshclam && clamscan --version - -- name: Install Thunar shortcut - ansible.builtin.copy: - src: files/thunar_custom_actions.xml - dest: '{{ user_home }}/.config/Thunar/uca.xml' - mode: 0600 - owner: '{{ username }}' diff --git a/roles/xfce/meta/main.yml b/roles/xfce/meta/main.yml new file mode 100644 index 0000000..882aa81 --- /dev/null +++ b/roles/xfce/meta/main.yml @@ -0,0 +1,3 @@ +--- +dependencies: + - role: clamav