14 lines
356 B
ObjectPascal
Raw Normal View History

class vswitch {
2012-10-05 10:24:15 +02:00
package { ["openvswitch-switch", "openvswitch-datapath-dkms"]:
ensure => present
}
service { "openvswitch-switch":
ensure => true,
enable => true,
hasstatus => true,
status => "/etc/init.d/openvswitch-switch",
require => Package["openvswitch-switch"]
}
}