Fix version check

This commit is contained in:
Anthony Rose 2021-11-16 10:49:38 -05:00
parent 4d9023f195
commit 0b821b2ade

View file

@ -36,7 +36,7 @@
packages:
- gnome-shell-extension-dash-to-dock
- gnome-tweaks
when: gnome_shell.stat.exists and ansible_distribution_major_version == 8
when: gnome_shell.stat.exists and ansible_distribution_major_version == '8'
- name: Install Gnome packages (EL 9)
become: true
ansible.builtin.dnf:
@ -47,4 +47,4 @@
- gnome-extensions-app
- gnome-shell-extension-dash-to-dock
- gnome-tweaks
when: gnome_shell.stat.exists and ansible_distribution_major_version == 9
when: gnome_shell.stat.exists and ansible_distribution_major_version == '9'