Write out ifconfig to /var/tmp/ifconfig_wireless for debugging

This commit is contained in:
Scott Ullrich 2005-07-05 20:27:50 +00:00
parent 785cde57e3
commit dc9514046f

View File

@ -374,6 +374,10 @@ function interfaces_wireless_configure($if, $wlcfg) {
mwexec("/sbin/ifconfig " . $ifcargs);
$fd = fopen("{$g['tmp_path']}/ifconfig_wireless", "w");
fwrite($fd, "/sbin/ifconfig {$ifcargs}");
fclose($fd);
return 0;
}