virthost: fix conditional
Signed-off-by: Kevin Fenzi <kevin@scrye.com>
This commit is contained in:
parent
579ba4cfc8
commit
0d9737eff6
1 changed files with 2 additions and 2 deletions
|
@ -125,11 +125,11 @@
|
|||
#
|
||||
- name: setup nested virt on virthosts with nested=true variable (x86_64)
|
||||
copy: src=kvm_intel.conf dest=/etc/modprobe.d/kvm_intel.conf
|
||||
when: nested == true and ansible_architecture is 'x86_64'
|
||||
when: nested == true and ansible_architecture == 'x86_64'
|
||||
|
||||
- name: setup nested virt on virthosts with nested=true variable (s390x)
|
||||
copy: src=kvm.conf dest=/etc/modprobe.d/kvm.conf
|
||||
when: nested == true and ansible_architecture is 's390x'
|
||||
when: nested == true and ansible_architecture == 's390x'
|
||||
|
||||
#
|
||||
# On some hosts in the fedorainfracloud network we want to add some users to be able to manage
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue