14 lines
188 B
ObjectPascal
Raw Normal View History

2012-10-06 22:12:33 +02:00
class vswitch (
case $::osfamily {
'Debian': {
$provider = "ovs_redhat"
}
'Redhat': {
$provider = "ovs"
}
}
2012-10-06 22:12:33 +02:00
) {
$cls = "vswitch::$provider"
include $cls
2012-10-05 10:24:15 +02:00
}