Puppet Class: classroom::course::windows
- Inherits:
- classroom::params
- Defined in:
- manifests/course/windows.pp
Overview
This is a wrapper class to include all the bits needed for Fundamentals
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
# File 'manifests/course/windows.pp', line 3
class classroom::course::windows (
$offline = $classroom::params::offline,
$jvm_tuning_profile = $classroom::params::jvm_tuning_profile,
$event_id = undef,
$event_pw = undef,
$version = undef,
) inherits classroom::params {
class { 'classroom::virtual':
offline => $offline,
jvm_tuning_profile => $jvm_tuning_profile,
control_repo => 'classroom-control-we.git',
event_id => $event_id,
event_pw => $event_pw,
}
if $role == 'master' {
class { 'classroom::master::showoff':
course => 'WindowsEssentials',
event_id => $event_id,
event_pw => $event_pw,
version => $version,
}
}
if $::osfamily == 'Windows' {
include classroom::windows
}
}
|