From bb96698ab3688fc5a2ed656dce3012d9145de777 Mon Sep 17 00:00:00 2001 From: Dan Bode Date: Sun, 19 Aug 2012 00:41:30 -0700 Subject: [PATCH] unset default for public_interface This commit unsets the public_interface default. This is to make the code behave more like the previous iteration. --- manifests/nova/compute.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/nova/compute.pp b/manifests/nova/compute.pp index d68796d..6fce77c 100644 --- a/manifests/nova/compute.pp +++ b/manifests/nova/compute.pp @@ -24,7 +24,7 @@ class openstack::nova::compute ( $rabbit_password, # Network $public_address = undef, - $public_interface = 'eth0', + $public_interface = undef, $private_interface = 'eth1', $fixed_range = '10.0.0.0/24', $network_manager = 'nova.network.manager.FlatDHCPManager',