Correct the msg ipv6 enable in system

net.ipv6.conf.default.disable_ipv6 = 1 means disable ipv6.
We should correct it in the same with code logic.

Change-Id: I6be6a9759878667d145cdd49de6cc10b7822957f
This commit is contained in:
ZhaoBo 2017-01-09 14:38:35 +08:00
parent 52184c5f61
commit b4c1ddaa8c
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ def is_enabled_and_bind_by_default():
LOG.info(_LI("IPv6 not present or configured not to bind to new "
"interfaces on this system. Please ensure IPv6 is "
"enabled and /proc/sys/net/ipv6/conf/default/"
"disable_ipv6 is set to 1 to enable IPv6."))
"disable_ipv6 is set to 0 to enable IPv6."))
return _IS_IPV6_ENABLED