From 1af4cfa087c61d53680720eaa10ec77e7df95097 Mon Sep 17 00:00:00 2001 From: vincent Date: Sun, 27 Aug 2023 15:42:19 +0200 Subject: [PATCH] fix: os familly issue --- tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/main.yml b/tasks/main.yml index acade31..1ea17e7 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -32,7 +32,7 @@ ansible.builtin.package: name: '{{ vault_os_package }}' state: present - when: not ansible_architecture == 'armv7l' or not ansible_distribution_release == Archlinux + when: not ansible_architecture == 'armv7l' or not ansible_os_family == 'Archlinux' - name: Create /opt/vault folder ansible.builtin.file: