$prot = $config['system']['webgui']['protocol'];
            $port = $config['system']['webgui']['port'];
            if ($port) {
                $url = "{$prot}://{$host}:{$port}/system_advanced_admin.php";
            } else {
                $url = "{$prot}://{$host}/system_advanced_admin.php";
            }
        }
        write_config();
        $retval = filter_configure();
        $savemsg = get_std_save_message($retval);
        if ($restart_webgui) {
            $savemsg .= sprintf("<br />" . gettext("One moment...redirecting to %s in 20 seconds."), $url);
        }
        conf_mount_rw();
        setup_serial_port();
        // Restart DNS in case dns rebinding toggled
        if (isset($config['dnsmasq']['enable'])) {
            services_dnsmasq_configure();
        } elseif (isset($config['unbound']['enable'])) {
            services_unbound_configure();
        }
        conf_mount_ro();
    }
}
$pgtitle = array(gettext("System"), gettext("Advanced"), gettext("Admin Access"));
include "head.inc";
if ($input_errors) {
    print_input_errors($input_errors);
}
if ($savemsg) {
Example #2
0
#!/usr/local/bin/php -f
<?php 
/* upgrade embedded users serial console */
require_once "globals.inc";
require_once "config.inc";
require_once "functions.inc";
if (file_exists("/usr/local/bin/git") && isset($config['system']['gitsync']['synconupgrade'])) {
    if (!empty($config['system']['gitsync']['repositoryurl'])) {
        exec("cd /root/pfsense/pfSenseGITREPO/pfSenseGITREPO && git config remote.origin.url " . escapeshellarg($config['system']['gitsync']['repositoryurl']));
    }
    if (!empty($config['system']['gitsync']['branch'])) {
        system("pfSsh.php playback gitsync " . escapeshellarg($config['system']['gitsync']['branch']) . " --upgrading");
    }
}
$newslicedir = "";
if (isset($argv[1]) && $argv[1] != "") {
    $newslicedir = '/tmp/' . $argv[1];
}
if ($g['enableserial_force'] || file_exists("{$newslicedir}/enableserial_force")) {
    $config['system']['enableserial'] = true;
    write_config();
}
system("echo \"Adding serial port settings ({$newslicedir})...\" >> /conf/upgrade_log.txt");
setup_serial_port("upgrade", $newslicedir);