19 lines
447 B
YAML
19 lines
447 B
YAML
---
|
|
# Define file, folder, and other facts per OS.
|
|
|
|
- name: Facts | Workstation | System | Pop OS
|
|
set_fact:
|
|
flatpak_distro: true
|
|
when: ansible_distribution == "Pop!_OS"
|
|
|
|
|
|
- name: Facts | Workstation | System | Debian and Ubuntu
|
|
set_fact:
|
|
flatpak_distro: true
|
|
when: ansible_distribution in ("Debian","Ubuntu")
|
|
|
|
|
|
- name: Facts | Workstation | System | FreeBSD
|
|
set_fact:
|
|
flatpak_distro: false
|
|
when: ansible_system == "FreeBSD" |