From e636f8122672db5d56c57439744267fc5350b525 Mon Sep 17 00:00:00 2001 From: Bryan Joshua Pedini Date: Sun, 23 Mar 2025 10:59:51 +0100 Subject: [PATCH] fixed typo (when/where) --- tasks/personal-linux-config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/personal-linux-config.yml b/tasks/personal-linux-config.yml index 1f73e56..60d7901 100644 --- a/tasks/personal-linux-config.yml +++ b/tasks/personal-linux-config.yml @@ -3,12 +3,12 @@ ansible.builtin.package: name: hostname state: latest - where: ansible_facts["os_family"] == "Debian" or ansible_facts["os_family"] == "RHEL" + when: ansible_facts["os_family"] == "Debian" or ansible_facts["os_family"] == "RHEL" - name: (arch) Ensure the inetutils package is installed and updated ansible.builtin.package: name: inetutils state: latest - where: ansible_facts["os_family"] == "Archlinux" + when: ansible_facts["os_family"] == "Archlinux" - name: Ensure the personal-linux-config repositories is updated ansible.builtin.git: dest: /root/personal-linux-config