Commit ab098f43 authored by William Grzybowski's avatar William Grzybowski
Browse files

Fix "typo" introduced in 8b261d4e

Ticket:	#3754
parent 23cb13b5
No related merge requests found
Showing with 1 addition and 1 deletion
+1 -1
......@@ -426,7 +426,7 @@ class notifier:
self._system("/sbin/sysctl net.inet6.ip6.auto_linklocal=1")
self._system("/usr/sbin/service autolink auto_linklocal quietstart")
self._system("/usr/sbin/service netif stop")
interfaces = self._pipeopen("ifconfig -l")
interfaces = self._pipeopen("ifconfig -l").communicate()[0]
interface_list = interfaces.split(" ")
for interface in interface_list:
if interface.startswith("vlan"):
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment