Added "amd64" to architecture checks
This commit is contained in:
parent
af9c498fff
commit
933316bf72
4 changed files with 15 additions and 13 deletions
|
@ -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,
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue