Files
confdroid_selinux/manifests/main/install.pp

22 lines
537 B
ObjectPascal
Raw Normal View History

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
package { $reqpackages_main:
2017-07-20 12:38:15 +01:00
ensure => $pkg_ensure,
}
if $sx_install_setools == true {
package { $reqpackages_tools:
2017-07-20 12:38:15 +01:00
ensure => $pkg_ensure,
}
}
}