$this->config_file = "../var/";
} else {
echo "No directory where i can create a config, bailing\n";
- $this->config["status"] = "unconf";
+ $this->config["status"] = "nodir";
}
}
}
fclose($fp);
}
+ if(file_exists("/sys/class/net/$fname/address")) $this->config["hardware"]["netdev"][$fname]["hwaddress"] = file_get_contents("/sys/class/net/$fname/address");
if(file_exists("/sys/class/net/$fname/bonding")) $this->config["hardware"]["netdev"][$fname]["bonding"] = true;
if(file_exists("/sys/class/net/$fname/bridge")) $this->config["hardware"]["netdev"][$fname]["bridge"] = true;
}
{
$url = "/";
$bodycontent = null;
+
+ $conf = new Config();
+ $conf->loadConfig();
+ $rconfig = $conf->getConfig();
+
+ if($rconfig["status"] != "conf") cbfw_startinstaller();
+
+
if(isset($_REQUEST["q"])) {
$url = $_REQUEST["q"];