summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/vpn_ipsec.php
diff options
context:
space:
mode:
authorLuiz Otavio O Souza <luiz@netgate.com>2015-11-22 09:27:55 -0600
committerLuiz Otavio O Souza <luiz@netgate.com>2015-11-22 09:27:55 -0600
commit1a2de6d640e720773e5701d53e25ed5bd728da65 (patch)
tree4db880b995d94871778da5cb2ca913b1fe28c145 /src/usr/local/www/vpn_ipsec.php
parentaa4c2db3d985dc632e08953cf82df9a81f024f29 (diff)
downloadpfsense-1a2de6d640e720773e5701d53e25ed5bd728da65.zip
pfsense-1a2de6d640e720773e5701d53e25ed5bd728da65.tar.gz
Remove the last usage cases of $config['ipsec']['enable'].
IPSEC is always on in 2.3, where necessary (IPSEC rules, IPSEC daemon), we check the existence of phase 1 entries.
Diffstat (limited to 'src/usr/local/www/vpn_ipsec.php')
-rw-r--r--src/usr/local/www/vpn_ipsec.php16
1 files changed, 1 insertions, 15 deletions
diff --git a/src/usr/local/www/vpn_ipsec.php b/src/usr/local/www/vpn_ipsec.php
index e243859..3062ffa 100644
--- a/src/usr/local/www/vpn_ipsec.php
+++ b/src/usr/local/www/vpn_ipsec.php
@@ -81,12 +81,9 @@ if (!is_array($config['ipsec']['phase2'])) {
$a_phase1 = &$config['ipsec']['phase1'];
$a_phase2 = &$config['ipsec']['phase2'];
-$pconfig['enable'] = isset($config['ipsec']['enable']);
-
if ($_POST) {
if ($_POST['apply']) {
- $retval = 0;
$retval = vpn_ipsec_configure();
/* reload the filter in the background */
filter_configure();
@@ -96,14 +93,6 @@ if ($_POST) {
clear_subsystem_dirty('ipsec');
}
}
- } else if ($_POST['submit'] == 'Save') {
- $pconfig = $_POST;
-
- $config['ipsec']['enable'] = $_POST['enable'] ? true : false;
-
- write_config();
-
- $retval = vpn_ipsec_configure();
} else if (isset($_POST['del'])) {
/* delete selected p1 entries */
if (is_array($_POST['p1entry']) && count($_POST['p1entry'])) {
@@ -281,15 +270,12 @@ display_top_tabs($tab_array);
print_info_box($savemsg, 'success');
}
- if ($pconfig['enable'] && is_subsystem_dirty('ipsec')) {
+ if (is_subsystem_dirty('ipsec')) {
print_info_box_np(gettext("The IPsec tunnel configuration has been changed") . ".<br />" . gettext("You must apply the changes in order for them to take effect."));
}
?>
<form name="mainform" method="post">
- <input name="enable" type="checkbox" id="enable" value="yes" <?php if ($pconfig['enable']) echo "checked=\"checked\"";?> />&nbsp;&nbsp;<?=gettext("Enable IPsec")?><br /><br />
- <input name="submit" type="submit" class="btn btn-sm btn-primary" value="<?=gettext("Save"); ?>" /><br /><br />
-
<div class="panel panel-default">
<div class="panel-heading"><h2 class="panel-title"><?=gettext('IPSec tunnels')?></h2></div>
<div class="panel-body table-responsive">
OpenPOWER on IntegriCloud