当前位置: 首页>>代码示例>>PHP>>正文


PHP clear_subsystem_dirty函数代码示例

本文整理汇总了PHP中clear_subsystem_dirty函数的典型用法代码示例。如果您正苦于以下问题:PHP clear_subsystem_dirty函数的具体用法?PHP clear_subsystem_dirty怎么用?PHP clear_subsystem_dirty使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了clear_subsystem_dirty函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: dhcpv6_apply_changes

function dhcpv6_apply_changes($dhcpdv6_enable_changed)
{
    $retval = 0;
    $retvaldhcp = 0;
    $retvaldns = 0;
    /* Stop DHCPv6 so we can cleanup leases */
    killbypid("{$g['dhcpd_chroot_path']}{$g['varrun_path']}/dhcpdv6.pid");
    // dhcp_clean_leases();
    /* dnsmasq_configure calls dhcpd_configure */
    /* no need to restart dhcpd twice */
    if (isset($config['dnsmasq']['enable']) && isset($config['dnsmasq']['regdhcpstatic'])) {
        $retvaldns = services_dnsmasq_configure();
        if ($retvaldns == 0) {
            clear_subsystem_dirty('hosts');
            clear_subsystem_dirty('staticmaps');
        }
    } else {
        if (isset($config['unbound']['enable']) && isset($config['unbound']['regdhcpstatic'])) {
            $retvaldns = services_unbound_configure();
            if ($retvaldns == 0) {
                clear_subsystem_dirty('unbound');
                clear_subsystem_dirty('staticmaps');
            }
        } else {
            $retvaldhcp = services_dhcpd_configure();
            if ($retvaldhcp == 0) {
                clear_subsystem_dirty('staticmaps');
            }
        }
    }
    if ($dhcpdv6_enable_changed) {
        $retvalfc = filter_configure();
    }
    if ($retvaldhcp == 1 || $retvaldns == 1 || $retvalfc == 1) {
        $retval = 1;
    }
    return get_std_save_message($retval);
}
开发者ID:NewEraCracker,项目名称:pfsense,代码行数:38,代码来源:services_dhcpv6.php

示例2: foreach

                }
                if (is_array($config['pppoes']['pppoe'])) {
                    foreach ($config['pppoes']['pppoe'] as $pppoe) {
                        if ($pppoe['pppoeid'] == $pppoeid) {
                            vpn_pppoe_configure($pppoe);
                            break;
                        }
                    }
                }
            }
            @unlink('/tmp/.vpn_pppoe.apply');
        }
        $retval = 0;
        $retval |= filter_configure();
        $savemsg = get_std_save_message($retval);
        clear_subsystem_dirty('vpnpppoe');
    }
}
if ($_GET['act'] == "del") {
    if ($a_pppoes[$_GET['id']]) {
        killbypid("/var/run/pppoe{$a_pppoes[$_GET['id']]['pppoeid']}-vpn.pid");
        mwexecf('/bin/rm -r %s', "/var/etc/pppoe{$a_pppoes[$_GET['id']]['pppoeid']}");
        unset($a_pppoes[$_GET['id']]);
        write_config();
        header("Location: vpn_pppoe.php");
        exit;
    }
}
$pgtitle = array(gettext("VPN"), gettext("PPPoE"));
$shortcut_section = "pppoes";
include "head.inc";
开发者ID:hlcherub,项目名称:core,代码行数:31,代码来源:vpn_pppoe.php

示例3: array

require_once "shaper.inc";
require_once "vslb.inc";
if (!is_array($config['load_balancer']['virtual_server'])) {
    $config['load_balancer']['virtual_server'] = array();
}
$a_vs =& $config['load_balancer']['virtual_server'];
if ($_POST) {
    $pconfig = $_POST;
    if ($_POST['apply']) {
        $retval = 0;
        $retval |= filter_configure();
        $retval |= relayd_configure();
        $savemsg = get_std_save_message($retval);
        /* Wipe out old relayd anchors no longer in use. */
        cleanup_lb_marked();
        clear_subsystem_dirty('loadbalancer');
    }
}
if ($_GET['act'] == "del") {
    if (array_key_exists($_GET['id'], $a_vs)) {
        if (!$input_errors) {
            cleanup_lb_mark_anchor($a_vs[$_GET['id']]['name']);
            unset($a_vs[$_GET['id']]);
            write_config();
            mark_subsystem_dirty('loadbalancer');
            header("Location: load_balancer_virtual_server.php");
            exit;
        }
    }
}
/* Index lbpool array for easy hyperlinking */
开发者ID:heper,项目名称:pfsense,代码行数:31,代码来源:load_balancer_virtual_server.php

示例4: interface_bring_down

                    interface_bring_down($ifapply, true, $ifcfgo);
                    if (isset($config['dhcpd'][$ifapply]['enable']) || isset($config['dhcpdv6'][$ifapply]['enable'])) {
                        services_dhcpd_configure();
                    }
                }
            }
        }
        /* restart snmp so that it binds to correct address */
        services_snmpd_configure();
        /* sync filter configuration */
        setup_gateways_monitor();
        clear_subsystem_dirty('interfaces');
        filter_configure();
        enable_rrd_graphing();
        if (is_subsystem_dirty('staticroutes') && system_routing_configure() == 0) {
            clear_subsystem_dirty('staticroutes');
        }
    }
    @unlink("{$g['tmp_path']}/.interfaces.apply");
    header("Location: interfaces.php?if={$if}");
    exit;
} else {
    if ($_POST && $_POST['enable'] != "yes") {
        unset($wancfg['enable']);
        if (isset($wancfg['wireless'])) {
            interface_sync_wireless_clones($wancfg, false);
        }
        write_config("Interface {$_POST['descr']}({$if}) is now disabled.");
        mark_subsystem_dirty('interfaces');
        if (file_exists("{$g['tmp_path']}/.interfaces.apply")) {
            $toapplylist = unserialize(file_get_contents("{$g['tmp_path']}/.interfaces.apply"));
开发者ID:simudream,项目名称:pfsense,代码行数:31,代码来源:interfaces.php

示例5: gettext

                     } else {
                         $input_errors[] = gettext("The configuration could not be restored.");
                     }
                 }
             }
         } else {
             $input_errors[] = gettext("The configuration could not be restored (file upload error).");
         }
     }
 }
 if ($mode == "reinstallpackages") {
     header("Location: pkg_mgr_install.php?mode=reinstallall");
     exit;
 } else {
     if ($mode == "clearpackagelock") {
         clear_subsystem_dirty('packagelock');
         $savemsg = "Package Lock Cleared";
     } else {
         if ($mode == "restore_ver") {
             $input_errors[] = gettext("XXX - this feature may hose your config (do NOT backrev configs!) - billm");
             if ($ver2restore != "") {
                 $conf_file = "{$g['cf_conf_path']}/bak/config-" . strtotime($ver2restore) . ".xml";
                 if (config_install($conf_file) == 0) {
                     mark_subsystem_dirty("restore");
                 } else {
                     $input_errors[] = gettext("The configuration could not be restored.");
                 }
             } else {
                 $input_errors[] = gettext("No version selected.");
             }
         }
开发者ID:jdillard,项目名称:pfsense,代码行数:31,代码来源:diag_backup.php

示例6: write_config

 } else {
     if ($_POST['apply']) {
         write_config();
         $retval = 0;
         $retval = filter_configure();
         $savemsg = get_std_save_message($retval);
         if (stristr($retval, "error") != true) {
             $savemsg = get_std_save_message($retval);
         } else {
             $savemsg = $retval;
         }
         /* reset rrd queues */
         system("rm -f /var/db/rrd/*queuedrops.rrd");
         system("rm -f /var/db/rrd/*queues.rrd");
         enable_rrd_graphing();
         clear_subsystem_dirty('shaper');
         if ($queue) {
             $output_form .= $queue->build_form();
             $dontshow = false;
         } else {
             $output_form .= $default_shaper_message;
             $dontshow = true;
         }
     } else {
         if ($queue) {
             $queue->validate_input($_POST, &$input_errors);
             if (!$input_errors) {
                 $queue->update_altq_queue_data($_POST);
                 $queue->wconfig();
                 write_config();
                 mark_subsystem_dirty('shaper');
开发者ID:rdmenezes,项目名称:pfsense,代码行数:31,代码来源:firewall_shaper.php

示例7: array

require_once "vpn.inc";
if (!isset($config['l2tp']['user'])) {
    $config['l2tp']['user'] = array();
}
$a_secret =& $config['l2tp']['user'];
if ($_POST) {
    $pconfig = $_POST;
    if ($_POST['apply']) {
        $retval = 0;
        if (!is_subsystem_dirty('rebootreq')) {
            $retval = vpn_l2tp_configure();
        }
        $savemsg = get_std_save_message();
        if ($retval == 0) {
            if (is_subsystem_dirty('l2tpusers')) {
                clear_subsystem_dirty('l2tpusers');
            }
        }
    }
}
if ($_GET['act'] == "del") {
    if ($a_secret[$_GET['id']]) {
        unset($a_secret[$_GET['id']]);
        write_config();
        mark_subsystem_dirty('l2tpusers');
        header("Location: vpn_l2tp_users.php");
        exit;
    }
}
include "head.inc";
$main_buttons = array(array('label' => gettext("add user"), 'href' => 'vpn_l2tp_users_edit.php'));
开发者ID:siloportem,项目名称:core,代码行数:31,代码来源:vpn_l2tp_users.php

示例8: unset

 if (isset($_POST['act'])) {
     $act = $_POST['act'];
 } else {
     $act = null;
 }
 $pconfig = $_POST;
 if (isset($id) && $act == "del") {
     unset($a_tunable[$id]);
     write_config();
     mark_subsystem_dirty('sysctl');
     header("Location: system_advanced_sysctl.php");
     exit;
 } else {
     if (!empty($pconfig['apply'])) {
         system_setup_sysctl();
         clear_subsystem_dirty('sysctl');
         header("Location: system_advanced_sysctl.php");
         exit;
     } elseif (!empty($pconfig['Submit'])) {
         $tunableent = array();
         $tunableent['tunable'] = $pconfig['tunable'];
         $tunableent['value'] = $pconfig['value'];
         $tunableent['descr'] = $pconfig['descr'];
         if (isset($id)) {
             $a_tunable[$id] = $tunableent;
         } else {
             $a_tunable[] = $tunableent;
         }
         mark_subsystem_dirty('sysctl');
         write_config();
         header("Location: system_advanced_sysctl.php");
开发者ID:8191,项目名称:opnsense-core,代码行数:31,代码来源:system_advanced_sysctl.php

示例9: array

##|-PRIV
require "guiconfig.inc";
require_once "vpn.inc";
if (!is_array($config['pptpd']['user'])) {
    $config['pptpd']['user'] = array();
}
$a_secret =& $config['pptpd']['user'];
if ($_POST) {
    $pconfig = $_POST;
    if ($_POST['apply']) {
        $retval = 0;
        $retval = vpn_setup();
        $savemsg = get_std_save_message($retval);
        if ($retval == 0) {
            if (is_subsystem_dirty('pptpusers')) {
                clear_subsystem_dirty('pptpusers');
            }
        }
    }
}
if ($_GET['act'] == "del") {
    if ($a_secret[$_GET['id']]) {
        unset($a_secret[$_GET['id']]);
        write_config();
        mark_subsystem_dirty('pptpusers');
        header("Location: vpn_pptp_users.php");
        exit;
    }
}
$pgtitle = array(gettext("VPN"), gettext("VPN PPTP"), gettext("Users"));
$shortcut_section = "pptps";
开发者ID:OptimWIFI,项目名称:pfsense,代码行数:31,代码来源:vpn_pptp_users.php

示例10: mark_subsystem_dirty

                                     mark_subsystem_dirty("restore");
                                     break;
                                 }
                             }
                         }
                         setup_serial_port();
                         if (is_interface_mismatch() == true) {
                             touch("/var/run/interface_mismatch_reboot_needed");
                             clear_subsystem_dirty("restore");
                             convert_config();
                             header("Location: interfaces_assign.php");
                             exit;
                         }
                         if (is_interface_vlan_mismatch() == true) {
                             touch("/var/run/interface_mismatch_reboot_needed");
                             clear_subsystem_dirty("restore");
                             convert_config();
                             header("Location: interfaces_assign.php");
                             exit;
                         }
                     } else {
                         $input_errors[] = gettext("The configuration could not be restored.");
                     }
                 }
             }
         } else {
             $input_errors[] = gettext("The configuration could not be restored (file upload error).");
         }
     }
 } elseif ($mode == "restore_ver") {
     $input_errors[] = gettext("XXX - this feature may hose your config (do NOT backrev configs!) - billm");
开发者ID:superactive,项目名称:core,代码行数:31,代码来源:diag_backup.php

示例11: write_config

        $natent['iprep_nested_ip'] = $_POST['iprep_nested_ip'];
        $natent['iprep_white'] = $_POST['iprep_white'];
        $a_nat[$id] = $natent;
        write_config("Snort pkg: modified IP REPUTATION preprocessor settings for {$a_nat[$id]['interface']}.");
        // Update the snort conf file for this interface
        $rebuild_rules = false;
        conf_mount_rw();
        snort_generate_conf($a_nat[$id]);
        conf_mount_ro();
        // Soft-restart Snort to live-load new variables
        snort_reload_config($a_nat[$id]);
        $pconfig = $natent;
        // Sync to configured CARP slaves if any are enabled
        snort_sync_on_changes();
        // We have saved changes and done a soft restart, so clear "dirty" flag
        clear_subsystem_dirty('snort_iprep');
    } else {
        $pconfig = $_POST;
    }
}
$if_friendly = convert_friendly_interface_to_friendly_descr($a_nat[$id]['interface']);
$pgtitle = gettext("Snort: Interface {$if_friendly} IP Reputation Preprocessor");
include_once "head.inc";
?>
<body link="#0000CC" vlink="#0000CC" alink="#0000CC">

<?php 
include "fbegin.inc";
/* Display Alert message */
if ($input_errors) {
    print_input_errors($input_errors);
开发者ID:LFCavalcanti,项目名称:pfsense-packages,代码行数:31,代码来源:snort_ip_reputation.php

示例12: clear_subsystem_dirty

     clear_subsystem_dirty('firmware');
 } else {
     if ($mode == "upgrade") {
         if ($_FILES['ulfile']['error']) {
             $errortext = "(" . file_upload_error_message($_FILES['ulfile']['error']) . ")";
         }
         if (is_uploaded_file($_FILES['ulfile']['tmp_name'])) {
             /* verify firmware image(s) */
             if (file_is_for_platform($_FILES['ulfile']['tmp_name'], $_FILES['ulfile']['name']) == false && !$_POST['sig_override']) {
                 $input_errors[] = gettext("The uploaded image file is not for this platform.");
             } else {
                 if (!file_exists($_FILES['ulfile']['tmp_name'])) {
                     /* probably out of memory for the MFS */
                     $input_errors[] = gettext("Image upload failed (out of memory?)");
                     mwexec("/etc/rc.firmware disable");
                     clear_subsystem_dirty('firmware');
                 } else {
                     /* move the image so PHP won't delete it */
                     rename($_FILES['ulfile']['tmp_name'], "{$g['upload_path']}/firmware.tgz");
                     /* check digital signature */
                     $sigchk = verify_digital_signature("{$g['upload_path']}/firmware.tgz");
                     if ($sigchk == 1) {
                         $sig_warning = gettext("The digital signature on this image is invalid.");
                     } else {
                         if ($sigchk == 2 && !isset($config['system']['firmware']['allowinvalidsig'])) {
                             $sig_warning = gettext("This image is not digitally signed.");
                         } else {
                             if ($sigchk >= 3) {
                                 $sig_warning = gettext("There has been an error verifying the signature on this image.");
                             }
                         }
开发者ID:dariomas,项目名称:pfsense,代码行数:31,代码来源:system_firmware.php

示例13: elseif

} elseif ($_POST['apply']) {
    /* Save new configuration */
    write_config("Suricata pkg: new rules configuration for {$a_rule[$id]['interface']}.");
    /*************************************************/
    /* Update the suricata.yaml file and rebuild the */
    /* rules for this interface.                     */
    /*************************************************/
    $rebuild_rules = true;
    conf_mount_rw();
    suricata_generate_yaml($a_rule[$id]);
    conf_mount_ro();
    $rebuild_rules = false;
    /* Signal Suricata to "live reload" the rules */
    suricata_reload_config($a_rule[$id]);
    // We have saved changes and done a soft restart, so clear "dirty" flag
    clear_subsystem_dirty('suricata_rules');
    // Sync to configured CARP slaves if any are enabled
    suricata_sync_on_changes();
}
include_once "head.inc";
$if_friendly = convert_friendly_interface_to_friendly_descr($pconfig['interface']);
$pgtitle = gettext("Suricata: Interface {$if_friendly} - Rules: {$currentruleset}");
?>

<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
<?php 
include "fbegin.inc";
?>

<form action='/suricata/suricata_rules.php' method='post' name='iform' id='iform'>
<input type='hidden' name='id' id='id' value='<?php 
开发者ID:LFCavalcanti,项目名称:pfsense-packages,代码行数:31,代码来源:suricata_rules.php

示例14: array

    $config['aliases']['alias'] = array();
}
$a_aliases =& $config['aliases']['alias'];
$tab = $_REQUEST['tab'] == "" ? "ip" : preg_replace("/\\W/", "", $_REQUEST['tab']);
if ($_POST) {
    if ($_POST['apply']) {
        $retval = 0;
        /* reload all components that use aliases */
        $retval = filter_configure();
        if (stristr($retval, "error") != true) {
            $savemsg = get_std_save_message($retval);
        } else {
            $savemsg = $retval;
        }
        if ($retval == 0) {
            clear_subsystem_dirty('aliases');
        }
    }
}
if ($_GET['act'] == "del") {
    if ($a_aliases[$_GET['id']]) {
        /* make sure rule is not being referenced by any nat or filter rules */
        $is_alias_referenced = false;
        $referenced_by = false;
        $alias_name = $a_aliases[$_GET['id']]['name'];
        // Firewall rules
        find_alias_reference(array('filter', 'rule'), array('source', 'address'), $alias_name, $is_alias_referenced, $referenced_by);
        find_alias_reference(array('filter', 'rule'), array('destination', 'address'), $alias_name, $is_alias_referenced, $referenced_by);
        find_alias_reference(array('filter', 'rule'), array('source', 'port'), $alias_name, $is_alias_referenced, $referenced_by);
        find_alias_reference(array('filter', 'rule'), array('destination', 'port'), $alias_name, $is_alias_referenced, $referenced_by);
        // NAT Rules
开发者ID:nwholloway,项目名称:pfsense,代码行数:31,代码来源:firewall_aliases.php

示例15: write_config

        if ($_POST['apply']) {
            /* Save new configuration */
            write_config("Snort pkg: save new rules configuration for {$a_rule[$id]['interface']}.");
            /*************************************************/
            /* Update the snort conf file and rebuild the    */
            /* rules for this interface.                     */
            /*************************************************/
            $rebuild_rules = true;
            conf_mount_rw();
            snort_generate_conf($a_rule[$id]);
            conf_mount_ro();
            $rebuild_rules = false;
            /* Soft-restart Snort to live-load new rules */
            snort_reload_config($a_rule[$id]);
            // We have saved changes and done a soft restart, so clear "dirty" flag
            clear_subsystem_dirty('snort_rules');
            // Sync to configured CARP slaves if any are enabled
            snort_sync_on_changes();
            if (snort_is_running($snort_uuid, $if_real)) {
                $savemsg = gettext("Snort is 'live-reloading' the new rule set.");
            }
        }
    }
}
include_once "head.inc";
$if_friendly = convert_friendly_interface_to_friendly_descr($a_rule[$id]['interface']);
$pgtitle = gettext("Snort: Interface {$if_friendly} - Rules: {$currentruleset}");
?>

<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
<?php 
开发者ID:LFCavalcanti,项目名称:pfsense-packages,代码行数:31,代码来源:snort_rules.php


注:本文中的clear_subsystem_dirty函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。