X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=3rdparty%2Fmodules%2Fnova%2Fmanifests%2Fnetwork%2Fflat.pp;fp=3rdparty%2Fmodules%2Fnova%2Fmanifests%2Fnetwork%2Fflat.pp;h=0000000000000000000000000000000000000000;hb=6e1426dc77fb4e5d51f07c187c6f2219431dc31e;hp=8c2d767d3e9abc7ae583d6d60652038bca3706a4;hpb=87423ba664cd5f2bb462ebadd08b1a90d0fe1c8d;p=mirror%2Fdsa-puppet.git diff --git a/3rdparty/modules/nova/manifests/network/flat.pp b/3rdparty/modules/nova/manifests/network/flat.pp deleted file mode 100644 index 8c2d767d3..000000000 --- a/3rdparty/modules/nova/manifests/network/flat.pp +++ /dev/null @@ -1,40 +0,0 @@ -# == Class: nova::network::flat -# -# Configuration settings for nova flat network -# -# === Parameters: -# -# [*fixed_range*] -# (required) The IPv4 CIDR for the network -# -# [flat_interface] -# (optional) Interface that flat network will use for bridging -# Defaults to undef -# -# [*public_interface*] -# (optional) The interface to use for public traffic -# Defaults to undef -# -# [flat_network_bridge] -# (optional) The name of the bridge to use -# Defaults to 'br100' -# -class nova::network::flat ( - $fixed_range, - $flat_interface=undef, - $public_interface = undef, - $flat_network_bridge = 'br100' -) { - - if $public_interface { - nova_config { 'DEFAULT/public_interface': value => $public_interface } - } - - nova_config { - 'DEFAULT/network_manager': value => 'nova.network.manager.FlatManager'; - 'DEFAULT/fixed_range': value => $fixed_range; - 'DEFAULT/flat_interface': value => $flat_interface; - 'DEFAULT/flat_network_bridge': value => $flat_network_bridge; - } - -}