15 lines
301 B
Puppet
15 lines
301 B
Puppet
# Install 32-bit compatibility libraries for 64-bit systems.
|
|
#
|
|
class ia32libs {
|
|
|
|
if $architecture == "x86_64" {
|
|
case $operatingsystem {
|
|
ubuntu: {
|
|
package { "ia32-libs":
|
|
ensure => installed,
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|