Remove special characters from names as well as do a little reformatting.
This commit is contained in:
parent
9a39c7c7bb
commit
eb4bc98b03
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
# Define what the program name is on each OS so we can use 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:
|
ansible.builtin.set_fact:
|
||||||
firefox: firefox-esr
|
firefox: firefox-esr
|
||||||
thunderbird: thunderbird
|
thunderbird: thunderbird
|
||||||
@ -11,13 +11,13 @@
|
|||||||
|
|
||||||
|
|
||||||
# TODO Needs tested
|
# TODO Needs tested
|
||||||
- name: Set Ubuntu Package Names
|
- name: Set Debian and Ubuntu Package Names
|
||||||
ansible.builtin.set_fact:
|
ansible.builtin.set_fact:
|
||||||
firefox: firefox-esr
|
firefox: firefox-esr
|
||||||
thunderbird: thunderbird
|
thunderbird: thunderbird
|
||||||
evolution: evolution
|
evolution: evolution
|
||||||
sshfs: sshfs
|
sshfs: sshfs
|
||||||
when: ansible_distribution == "Ubuntu"
|
when: ansible_distribution in ("Debian","Ubuntu")
|
||||||
|
|
||||||
|
|
||||||
- name: Set FreeBSD Package Names
|
- name: Set FreeBSD Package Names
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
# Define what the program name is on each OS so we can use 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:
|
ansible.builtin.set_fact:
|
||||||
cups: cups
|
cups: cups
|
||||||
cups_pattern: cupsd
|
cups_pattern: cupsd
|
||||||
@ -11,13 +11,13 @@
|
|||||||
|
|
||||||
|
|
||||||
# TODO Needs tested
|
# TODO Needs tested
|
||||||
- name: Set Ubuntu Service Names
|
- name: Set Debian and Ubuntu Service Names
|
||||||
ansible.builtin.set_fact:
|
ansible.builtin.set_fact:
|
||||||
cups: cups
|
cups: cups
|
||||||
cups_pattern: cupsd
|
cups_pattern: cupsd
|
||||||
cups_browse: cups-browsed
|
cups_browse: cups-browsed
|
||||||
cups_browse_pattern: cups-browsed
|
cups_browse_pattern: cups-browsed
|
||||||
when: ansible_distribution == "Ubuntu"
|
when: ansible_distribution in ("Debian","Ubuntu")
|
||||||
|
|
||||||
|
|
||||||
- name: Set FreeBSD Service Names
|
- name: Set FreeBSD Service Names
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
# Define what the file and folder names should be on each OS.
|
# Define file, folder, and other facts per OS.
|
||||||
|
|
||||||
- name: Set Pop!_OS Desktop Facts
|
- name: Set Pop OS Facts
|
||||||
ansible.builtin.set_fact:
|
ansible.builtin.set_fact:
|
||||||
flatpak_distro: yes
|
flatpak_distro: yes
|
||||||
lynis_install_dir: /usr/local/lynis
|
lynis_install_dir: /usr/local/lynis
|
||||||
@ -11,8 +11,7 @@
|
|||||||
when: ansible_distribution == "Pop!_OS"
|
when: ansible_distribution == "Pop!_OS"
|
||||||
|
|
||||||
|
|
||||||
# TODO Needs tested
|
- name: Set Debian and Ubuntu Facts
|
||||||
- name: Set Debian+Ubuntu Server Facts
|
|
||||||
ansible.builtin.set_fact:
|
ansible.builtin.set_fact:
|
||||||
flatpak_distro: yes
|
flatpak_distro: yes
|
||||||
lynis_install_dir: /usr/local/lynis
|
lynis_install_dir: /usr/local/lynis
|
||||||
|
@ -1,11 +1,12 @@
|
|||||||
---
|
---
|
||||||
# Define users and groups for each OS
|
# Define users and groups per OS type.
|
||||||
|
|
||||||
- name: Set Linux User Variables
|
- name: Set Linux User Variables
|
||||||
ansible.builtin.set_fact:
|
ansible.builtin.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:
|
ansible.builtin.set_fact:
|
||||||
root_group: wheel
|
root_group: wheel
|
||||||
|
Loading…
x
Reference in New Issue
Block a user