puppet-desktop/manifests/kde.pp

17 lines
390 B
ObjectPascal
Raw Permalink Normal View History

# @summary A short summary of the purpose of this class
#
# A description of what this class does
#
# @example
# include desktop::kde
class desktop::kde (
Boolean $kde_desktop_install = $desktop::kde_desktop_install,
String $kde_desktop_package = $desktop::kde_desktop_package,
) {
if $kde_desktop_install {
package { $kde_desktop_package:
ensure => present,
}
}
}