diff options
author | bmeeks8 <bmeeks8@bellsouth.net> | 2014-10-09 14:50:22 -0400 |
---|---|---|
committer | bmeeks8 <bmeeks8@bellsouth.net> | 2014-10-09 14:50:22 -0400 |
commit | 1682d08e3e80b36c8d4cae1cab27b70bee4d557f (patch) | |
tree | d292396d751bd72092091c76ca47f9afa8644098 /config/snort/snort_interfaces_edit.php | |
parent | db4778c2478f525ebc24d351472c036187fd4a81 (diff) | |
download | pfsense-packages-1682d08e3e80b36c8d4cae1cab27b70bee4d557f.tar.gz pfsense-packages-1682d08e3e80b36c8d4cae1cab27b70bee4d557f.tar.bz2 pfsense-packages-1682d08e3e80b36c8d4cae1cab27b70bee4d557f.zip |
Wrap calls to sync_snort_package_config() with conf_mount_rw().
Diffstat (limited to 'config/snort/snort_interfaces_edit.php')
-rwxr-xr-x | config/snort/snort_interfaces_edit.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/config/snort/snort_interfaces_edit.php b/config/snort/snort_interfaces_edit.php index 249108f9..14b54b34 100755 --- a/config/snort/snort_interfaces_edit.php +++ b/config/snort/snort_interfaces_edit.php @@ -170,7 +170,9 @@ if ($_POST["save"] && !$input_errors) { snort_stop($a_rule[$id], get_real_interface($a_rule[$id]['interface'])); write_config("Snort pkg: modified interface configuration for {$a_rule[$id]['interface']}."); $rebuild_rules = false; + conf_mount_rw(); sync_snort_package_config(); + conf_mount_ro(); header( 'Expires: Sat, 26 Jul 1997 05:00:00 GMT' ); header( 'Last-Modified: ' . gmdate( 'D, d M Y H:i:s' ) . ' GMT' ); header( 'Cache-Control: no-store, no-cache, must-revalidate' ); @@ -377,7 +379,9 @@ if ($_POST["save"] && !$input_errors) { write_config("Snort pkg: modified interface configuration for {$natent['interface']}."); /* Update snort.conf and snort.sh files for this interface */ + conf_mount_rw(); sync_snort_package_config(); + conf_mount_ro(); /* See if we need to restart Snort after an interface re-assignment */ if ($snort_start == true) { |