Hooray! Removing the FQCN for set_fact makes Debian happy!
This commit is contained in:
parent
ccf28667e5
commit
e0b9864a99
@ -2,7 +2,7 @@
|
|||||||
# Define program names per OS for package builtin.
|
# Define program names per OS for package builtin.
|
||||||
|
|
||||||
- name: Set Pop OS Package Names
|
- name: Set Pop OS Package Names
|
||||||
ansible.builtin.set_fact:
|
set_fact:
|
||||||
firefox: firefox-esr
|
firefox: firefox-esr
|
||||||
thunderbird: thunderbird
|
thunderbird: thunderbird
|
||||||
evolution: evolution
|
evolution: evolution
|
||||||
@ -12,7 +12,7 @@
|
|||||||
|
|
||||||
# TODO Needs tested
|
# TODO Needs tested
|
||||||
- name: Set Debian and Ubuntu Package Names
|
- name: Set Debian and Ubuntu Package Names
|
||||||
ansible.builtin.set_fact:
|
set_fact:
|
||||||
firefox: firefox-esr
|
firefox: firefox-esr
|
||||||
thunderbird: thunderbird
|
thunderbird: thunderbird
|
||||||
evolution: evolution
|
evolution: evolution
|
||||||
@ -21,7 +21,7 @@
|
|||||||
|
|
||||||
|
|
||||||
- name: Set FreeBSD Package Names
|
- name: Set FreeBSD Package Names
|
||||||
ansible.builtin.set_fact:
|
set_fact:
|
||||||
firefox: firefox-esr
|
firefox: firefox-esr
|
||||||
thunderbird: thunderbird
|
thunderbird: thunderbird
|
||||||
evolution: evolution
|
evolution: evolution
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
# Define program names per OS for service builtin.
|
# Define program names per OS for service builtin.
|
||||||
|
|
||||||
- name: Set Pop OS Service Names
|
- name: Set Pop OS Service Names
|
||||||
ansible.builtin.set_fact:
|
set_fact:
|
||||||
cups: cups
|
cups: cups
|
||||||
cups_pattern: cupsd
|
cups_pattern: cupsd
|
||||||
cups_browse: cups-browsed
|
cups_browse: cups-browsed
|
||||||
@ -12,7 +12,7 @@
|
|||||||
|
|
||||||
# TODO Needs tested
|
# TODO Needs tested
|
||||||
- name: Set Debian and Ubuntu Service Names
|
- name: Set Debian and Ubuntu Service Names
|
||||||
ansible.builtin.set_fact:
|
set_fact:
|
||||||
cups: cups
|
cups: cups
|
||||||
cups_pattern: cupsd
|
cups_pattern: cupsd
|
||||||
cups_browse: cups-browsed
|
cups_browse: cups-browsed
|
||||||
@ -21,7 +21,7 @@
|
|||||||
|
|
||||||
|
|
||||||
- name: Set FreeBSD Service Names
|
- name: Set FreeBSD Service Names
|
||||||
ansible.builtin.set_fact:
|
set_fact:
|
||||||
cups: cups
|
cups: cups
|
||||||
cups_pattern: cupsd
|
cups_pattern: cupsd
|
||||||
cups_browse: cups-browsed
|
cups_browse: cups-browsed
|
||||||
|
@ -2,12 +2,12 @@
|
|||||||
# Define users and groups per OS type.
|
# Define users and groups per OS type.
|
||||||
|
|
||||||
- name: Set Linux User Variables
|
- name: Set Linux User Variables
|
||||||
ansible.builtin.set_fact:
|
set_fact:
|
||||||
root_group: root
|
root_group: root
|
||||||
when: ansible_system == "Linux"
|
when: ansible_system == "Linux"
|
||||||
|
|
||||||
|
|
||||||
- name: Set FreeBSD User Variables
|
- name: Set FreeBSD User Variables
|
||||||
ansible.builtin.set_fact:
|
set_fact:
|
||||||
root_group: wheel
|
root_group: wheel
|
||||||
when: ansible_system == "FreeBSD"
|
when: ansible_system == "FreeBSD"
|
Loading…
x
Reference in New Issue
Block a user