think we need and here.

This commit is contained in:
Kevin Fenzi 2015-11-10 21:08:25 +00:00
parent b2cca500f9
commit 352c1a2838

View file

@ -358,7 +358,7 @@
- packages
- watchdog
- base
when: ansible_distribution_major_version|int < 22 && env == 'staging'
when: ansible_distribution_major_version|int < 22 and env == 'staging'
- name: install watchdog
dnf: pkg={{ item }} state=present
@ -368,7 +368,7 @@
- packages
- watchdog
- base
when: ansible_distribution_major_version|int > 21 && env == 'staging'
when: ansible_distribution_major_version|int > 21 and env == 'staging'
- name: watchdog device configuration
copy: src=watchdog.conf dest=/etc/watchdog.conf owner=root group=root mode=644