Hooray! Removing the FQCN for set_fact makes Debian happy!

This commit is contained in:
Hyperling 2021-01-31 17:10:39 -06:00
parent ccf28667e5
commit e0b9864a99
3 changed files with 8 additions and 8 deletions

View File

@ -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

View File

@ -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

View File

@ -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"