Added module ia32libs
This commit is contained in:
parent
7b10e62e1c
commit
63b1806ffc
2 changed files with 21 additions and 19 deletions
15
ia32libs/manifests/init.pp
Normal file
15
ia32libs/manifests/init.pp
Normal file
|
@ -0,0 +1,15 @@
|
|||
# Install 32-bit compatibility libraries for 64-bit systems.
|
||||
#
|
||||
class ia32libs {
|
||||
|
||||
if $architecture == "x86_64" {
|
||||
case $operatingsystem {
|
||||
ubuntu: {
|
||||
package { "ia32-libs":
|
||||
ensure => installed,
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue