24 lines
542 B
YAML
24 lines
542 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"
|
|
|
|
|
|
- name: Facts | Workstation | System | DEBUG flatpak_distro
|
|
debug:
|
|
var: flatpak_distro |