From e0b9864a9970d09c455c8a49c9cb1c2473f68502 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Sun, 31 Jan 2021 17:10:39 -0600 Subject: [PATCH] Hooray! Removing the FQCN for set_fact makes Debian happy! --- facts/package.yml | 6 +++--- facts/service.yml | 6 +++--- facts/user.yml | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/facts/package.yml b/facts/package.yml index 90b0b6b..61b7b83 100644 --- a/facts/package.yml +++ b/facts/package.yml @@ -2,7 +2,7 @@ # Define program names per OS for package builtin. - name: Set Pop OS Package Names - ansible.builtin.set_fact: + set_fact: firefox: firefox-esr thunderbird: thunderbird evolution: evolution @@ -12,7 +12,7 @@ # TODO Needs tested - name: Set Debian and Ubuntu Package Names - ansible.builtin.set_fact: + set_fact: firefox: firefox-esr thunderbird: thunderbird evolution: evolution @@ -21,7 +21,7 @@ - name: Set FreeBSD Package Names - ansible.builtin.set_fact: + set_fact: firefox: firefox-esr thunderbird: thunderbird evolution: evolution diff --git a/facts/service.yml b/facts/service.yml index 46a43cf..da8e5ef 100644 --- a/facts/service.yml +++ b/facts/service.yml @@ -2,7 +2,7 @@ # Define program names per OS for service builtin. - name: Set Pop OS Service Names - ansible.builtin.set_fact: + set_fact: cups: cups cups_pattern: cupsd cups_browse: cups-browsed @@ -12,7 +12,7 @@ # TODO Needs tested - name: Set Debian and Ubuntu Service Names - ansible.builtin.set_fact: + set_fact: cups: cups cups_pattern: cupsd cups_browse: cups-browsed @@ -21,7 +21,7 @@ - name: Set FreeBSD Service Names - ansible.builtin.set_fact: + set_fact: cups: cups cups_pattern: cupsd cups_browse: cups-browsed diff --git a/facts/user.yml b/facts/user.yml index 8ac5c96..e8b2121 100644 --- a/facts/user.yml +++ b/facts/user.yml @@ -2,12 +2,12 @@ # Define users and groups per OS type. - name: Set Linux User Variables - ansible.builtin.set_fact: + set_fact: root_group: root when: ansible_system == "Linux" - name: Set FreeBSD User Variables - ansible.builtin.set_fact: + set_fact: root_group: wheel when: ansible_system == "FreeBSD" \ No newline at end of file