Remove a bunch of 3rdparty modules that seem unused
[mirror/dsa-puppet.git] / 3rdparty / modules / nova / manifests / manage / network.pp
diff --git a/3rdparty/modules/nova/manifests/manage/network.pp b/3rdparty/modules/nova/manifests/manage/network.pp
deleted file mode 100644 (file)
index 8a8312d..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-# === Parameters:
-#
-# [*network*]
-#   (required) IPv4 CIDR of network to create.
-#
-# [*num_networks*]
-#   (optional) Number of networks to split $network into.
-#   Defaults to 1
-#
-# [*network_size*]
-#   (optional) Size of the network to create
-#   Defaults to 255
-#
-# [*vlan_start*]
-#   (optional) The vlan number to use if in vlan mode
-#   Defaults to undef
-#
-# [*project*]
-#   (optional) Project that network should be associated with
-#   Defaults to undef
-#
-define nova::manage::network (
-  $network,
-  $label        = 'novanetwork',
-  $num_networks = 1,
-  $network_size = 255,
-  $vlan_start   = undef,
-  $project      = undef
-) {
-
-  File['/etc/nova/nova.conf'] -> Nova_network[$name]
-  Exec<| title == 'nova-db-sync' |> -> Nova_network[$name]
-
-  nova_network { $name:
-    ensure       => present,
-    network      => $network,
-    label        => $label,
-    num_networks => $num_networks,
-    network_size => $network_size,
-    project      => $project,
-    vlan_start   => $vlan_start,
-  }
-
-}