Added "amd64" to architecture checks

This commit is contained in:
Ossi Salmi 2013-04-30 14:57:16 +03:00
parent af9c498fff
commit 933316bf72
4 changed files with 15 additions and 13 deletions

View file

@ -2,11 +2,13 @@
#
class ia32libs {
if $architecture == "x86_64" {
case $::operatingsystem {
ubuntu: {
package { "ia32-libs":
ensure => installed,
case $::architecture {
"amd64","x86_64": {
case $::operatingsystem {
"ubuntu": {
package { "ia32-libs":
ensure => installed,
}
}
}
}