Do not enumerate ipv6 routes in CentOS 4

reviewable/pr18780/r1
James Tanner 11 years ago
parent 50d72d89c2
commit 879d20cac3

@ -1370,6 +1370,10 @@ class LinuxNetwork(Network):
)
interface = dict(v4 = {}, v6 = {})
for v in 'v4', 'v6':
if v == 'v6' and self.facts['lsb']['id'] == 'CentOS' \
and self.facts['lsb']['major_release'] == '4':
# "ip -6 route get" causes kernel panics in Centos 4
continue
if v == 'v6' and not socket.has_ipv6:
continue
rc, out, err = module.run_command(command[v])

Loading…
Cancel
Save