diff options
-rwxr-xr-x | etc/rc.initial.defaults | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/etc/rc.initial.defaults b/etc/rc.initial.defaults index 9067c6b..5e7442c 100755 --- a/etc/rc.initial.defaults +++ b/etc/rc.initial.defaults @@ -30,11 +30,9 @@ POSSIBILITY OF SUCH DAMAGE. */ - /* don't parse the config so we can restore in case it's broken */ - $noparseconfig = 1; - /* parse the configuration and include all functions used below */ - require_once("config.inc"); + require_once("util.inc"); + require_once("config.lib.inc"); require_once("functions.inc"); $fp = fopen('php://stdin', 'r'); @@ -61,4 +59,4 @@ EOD; } fclose($fp); -?>
\ No newline at end of file +?> |