On Wed, Feb 16, 2011 at 12:43 PM, Michael Hanselmann <[email protected]> wrote:
> Am 16. Februar 2011 13:26 schrieb Guido Trotter <[email protected]>:
>> --- a/lib/constants.py
>> +++ b/lib/constants.py
>> @@ -738,7 +738,6 @@ INIC_MODE = "mode"
>> INIC_LINK = "link"
>> INIC_BRIDGE = "bridge"
>> INIC_PARAMS_TYPES = {
>> - INIC_BRIDGE: VTYPE_STRING,
>
> Don't you want to remove the actual INIC_BRIDGE, too?
>
Yes, for some reason I thought I did. new diff with removal of that
line as well:
--- a/lib/constants.py
+++ b/lib/constants.py
@@ -736,9 +736,7 @@ INIC_MAC = "mac"
INIC_IP = "ip"
INIC_MODE = "mode"
INIC_LINK = "link"
-INIC_BRIDGE = "bridge"
INIC_PARAMS_TYPES = {
- INIC_BRIDGE: VTYPE_STRING,
INIC_IP: VTYPE_MAYBE_STRING,
INIC_LINK: VTYPE_STRING,
INIC_MAC: VTYPE_STRING,
Thanks,
Guido