projects
/
mirror
/
dsa-puppet.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
0cd302d03618f298fbc1c986f9ec8767bbbe9bd1
[mirror/dsa-puppet.git]
/
modules
/
hardware
/
manifests
/
intel.pp
1
class hardware::intel {
2
if $::virtual == 'physical' and $::debarchitecture == 'amd64' and $::processor0 =~ /^Intel/ {
3
package { 'iucode-tool':
4
ensure => installed,
5
}
6
package { 'intel-microcode':
7
ensure => installed,
8
}
9
}
10
}