Remove a bunch of 3rdparty modules that seem unused
[mirror/dsa-puppet.git] / 3rdparty / modules / vswitch / manifests / params.pp
diff --git a/3rdparty/modules/vswitch/manifests/params.pp b/3rdparty/modules/vswitch/manifests/params.pp
deleted file mode 100644 (file)
index 71f1169..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-# vswitch params
-#
-class vswitch::params {
-  case $::osfamily {
-    'Redhat': {
-      $ovs_package_name = 'openvswitch'
-      $ovs_service_name = 'openvswitch'
-      $provider         = 'ovs_redhat'
-    }
-    'Debian': {
-      $ovs_package_name = ['openvswitch-switch', 'openvswitch-datapath-dkms']
-      $ovs_service_name = 'openvswitch-switch'
-      $provider         = 'ovs'
-    }
-    default: {
-      fail " Osfamily ${::osfamily} not supported yet"
-    }
-  } # Case $::osfamily
-}