Add psutil dependency. Fix names in fact files.

This commit is contained in:
2021-02-06 17:00:55 -06:00
parent cd1cdef514
commit 0ed6685b30
8 changed files with 36 additions and 23 deletions

View File

@ -10,22 +10,34 @@
gnome_tweaks: gnome-tweaks
dconf_editor: dconf-editor
- name: Facts | Workstation | Package | Pop_OS! and Ubuntu
- name: Facts | Workstation | Package | Pop_OS!
set_fact:
flatpak_distro: true
firefox_esr: firefox
when: ansible_distribution in ("Pop!_OS", "Ubuntu")
psutil: python3-psutil
when: ansible_distribution == "Pop!_OS"
- name: Facts | Workstation | Package | Ubuntu
set_fact:
flatpak_distro: true
firefox_esr: firefox
psutil: python3-psutil
when: ansible_distribution == "Ubuntu"
- name: Facts | Workstation | Package | Debian
set_fact:
flatpak_distro: true
firefox_esr: firefox-esr
when: ansible_distribution in ("Debian")
psutil: python3-psutil
when: ansible_distribution == "Debian"
- name: Facts | Workstation | Package | FreeBSD
set_fact:
flatpak_distro: false
firefox_esr: firefox-esr
psutil: py37-psutil
when: ansible_system == "FreeBSD"