diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2015-07-12 13:27:30 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2015-07-12 13:27:30 +0200 |
commit | e3a42987d9929236b7b68352bbd4bd7c6cde8d38 (patch) | |
tree | 9d22b542aec62db32e9c076eb69cc1b5b2655bcb /roles/common/tasks | |
parent | b752a80935941eb07e7700d8cbab567d1a3f39c4 (diff) |
Change match to "^(Genuine)?Intel.*" for Intel processors.
Diffstat (limited to 'roles/common/tasks')
-rw-r--r-- | roles/common/tasks/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/common/tasks/main.yml b/roles/common/tasks/main.yml index df609d3..470a6b2 100644 --- a/roles/common/tasks/main.yml +++ b/roles/common/tasks/main.yml @@ -4,7 +4,7 @@ - include: apt.yml tags=apt - name: Install intel-microcode apt: pkg=intel-microcode - when: "ansible_processor[0] | search('^Intel.*') and not (ansible_virtualization_role == 'guest' and ansible_virtualization_type == 'xen')" + when: "ansible_processor[0] | search('^(Genuine)?Intel.*') and not (ansible_virtualization_role == 'guest' and ansible_virtualization_type == 'xen')" tags: intel - include: firewall.yml tags=firewall,iptables - include: samhain.yml tags=samhain |