changed from ansible_distribution to ansible_os_family

This commit is contained in:
Radar231 2021-12-30 14:22:23 -05:00
parent 38200536b6
commit d4af4a8aab
1 changed files with 1 additions and 1 deletions

View File

@ -22,6 +22,6 @@
apt:
deb: "/tmp/{{ sops_pkg }}"
state: present
when: ansible_distribution == "Ubuntu" or ansible_distribution == "Pop!_OS" or ansible_distribution == "Linux Mint"
when: ansible_os_family == "Debian"
# EOF