From b47add0f32a0a7deb6d674cc7edb713f53314250 Mon Sep 17 00:00:00 2001 From: Skylar Saveland Date: Thu, 3 Oct 2013 18:58:11 -0700 Subject: [PATCH] fixes 4365 - Mac with cisco vpn client, GenericBsdIfconfigNetwork get_default_interfaces fails with index out of range --- library/system/setup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/system/setup b/library/system/setup index a0901ec366e..89d1ef9adce 100755 --- a/library/system/setup +++ b/library/system/setup @@ -1576,7 +1576,7 @@ class GenericBsdIfconfigNetwork(Network): for line in lines: words = line.split() # Collect output from route command - if len(words) > 0: + if len(words) > 1: if words[0] == 'interface:': interface[v]['interface'] = words[1] if words[0] == 'gateway:':