2017-07-20 12:38:15 +01:00
|
|
|
## cd_selinux::main::install.pp
|
|
|
|
|
# Module name: cd_selinux
|
|
|
|
|
# Author: Arne Teuke (arne_teuke@ConfDroid.com)
|
|
|
|
|
# @summary Class manage all aspects of installing binaries required for
|
|
|
|
|
# cd_selinux
|
|
|
|
|
###############################################################################
|
|
|
|
|
class cd_selinux::main::install (
|
|
|
|
|
|
|
|
|
|
) inherits cd_selinux::params {
|
2017-07-20 13:46:33 +01:00
|
|
|
require cd_resources
|
2017-07-20 12:38:15 +01:00
|
|
|
|
2025-05-14 13:34:43 +02:00
|
|
|
package { $reqpackages_main:
|
2017-07-20 12:38:15 +01:00
|
|
|
ensure => $pkg_ensure,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if $sx_install_setools == true {
|
2025-05-14 13:34:43 +02:00
|
|
|
package { $reqpackages_tools:
|
2017-07-20 12:38:15 +01:00
|
|
|
ensure => $pkg_ensure,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|