memcached (openstack) is no longer in use
[mirror/dsa-puppet.git] / 3rdparty / modules / vswitch / manifests / params.pp
1 # vswitch params
2 #
3 class vswitch::params {
4   case $::osfamily {
5     'Redhat': {
6       $ovs_package_name = 'openvswitch'
7       $ovs_service_name = 'openvswitch'
8       $provider         = 'ovs_redhat'
9     }
10     'Debian': {
11       $ovs_package_name = ['openvswitch-switch', 'openvswitch-datapath-dkms']
12       $ovs_service_name = 'openvswitch-switch'
13       $provider         = 'ovs'
14     }
15     default: {
16       fail " Osfamily ${::osfamily} not supported yet"
17     }
18   } # Case $::osfamily
19 }