Skip to content

Commit

Permalink
Fix AMD processor result check (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
puppetninja authored and lukas-bednar committed Apr 25, 2019
1 parent faeec67 commit 62c91b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
- name: Fail in case no Intel or AMD virtualization support is not detected.
fail:
msg: "The system doesn't seem to have Intel nor AMD virtualization support."
when: intel_proccesor.rc != 0 and amd_proccesor != 0
when: intel_proccesor.rc != 0 and amd_proccesor.rc != 0

- name: Set fact for Intel virtualization
set_fact:
Expand Down

0 comments on commit 62c91b0

Please sign in to comment.