Puppet Class: classroom::course::classic::fundamentals
- Defined in:
- manifests/course/classic/fundamentals.pp
Overview
This is a wrapper class for the legacy config
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
# File 'manifests/course/classic/fundamentals.pp', line 3
class classroom::course::classic::fundamentals (
$offline = undef,
$manage_yum = undef,
$time_servers = undef,
$jvm_tuning_profile = undef,
$event_id = undef,
$event_pw = undef,
$version = undef,
) {
# just wrap the classroom class
class { 'classroom_legacy::course::fundamentals':
offline => $offline,
manage_yum => $manage_yum,
time_servers => $time_servers,
jvm_tuning_profile => $jvm_tuning_profile,
event_id => $event_id,
event_pw => $event_pw,
version => $version,
}
}
|