summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorErmal Luçi <eri@pfsense.org>2009-05-12 12:54:56 +0000
committerErmal Luçi <eri@pfsense.org>2009-05-12 12:54:56 +0000
commit9018933203e7b14e63edb0295dd920ec277c378c (patch)
treedb88c53b4f21b89138cf30c292dcf899cf35cc5d /etc
parent792263588d88164b91b554e457bf57a57a790426 (diff)
downloadpfsense-9018933203e7b14e63edb0295dd920ec277c378c.zip
pfsense-9018933203e7b14e63edb0295dd920ec277c378c.tar.gz
Merge after_filter_configure_run commands with the system:afterfilterchangeshellcmd to be written on the same file. This is just a micro optimization.
Diffstat (limited to 'etc')
-rw-r--r--etc/inc/filter.inc25
1 files changed, 13 insertions, 12 deletions
diff --git a/etc/inc/filter.inc b/etc/inc/filter.inc
index 0ae5866..588d631 100644
--- a/etc/inc/filter.inc
+++ b/etc/inc/filter.inc
@@ -177,7 +177,6 @@ function filter_configure_sync() {
if(file_exists("{$g['tmp_path']}/rules.debug"))
copy("{$g['tmp_path']}/rules.debug", "{$g['tmp_path']}/rules.debug.old");
- $fd = fopen("{$g['tmp_path']}/rules.debug", "w");
$rules .= "{$aliases} \n";
update_filter_reload_status("Setting up logging information");
$rules .= setup_logging_interfaces();
@@ -207,8 +206,11 @@ function filter_configure_sync() {
$rules .= "{$natrules}\n";
$rules .= "{$pfrules}\n";
- fwrite($fd, $rules);
- fclose($fd);
+ if (!file_put_contents("{$g['tmp_path']}/rules.debug", $rules, LOCK_EX)) {
+ log_error("WARNING: Could not write new rules!");
+ unlock($filterlck);
+ return;
+ }
/*
* XXX: This are not being used for now so just comment them out.
@@ -258,8 +260,15 @@ function filter_configure_sync() {
$fda = fopen("/tmp/commands.txt", "w");
foreach($after_filter_configure_run as $afcr)
fwrite($fda, $afcr . "\n");
+ /*
+ * we need a way to let a user run a shell cmd after each
+ * filter_configure() call. run this xml command after
+ * each change.
+ */
+ if($config['system']['afterfilterchangeshellcmd'] <> "")
+ fwrite($fda, $config['system']['afterfilterchangeshellcmd'] . "\n");
fclose($fda);
- if(file_exists("/tmp/commands.txt")) {
+ if (file_exists("/tmp/commands.txt")) {
mwexec("sh /tmp/commands.txt &");
unlink("/tmp/commands.txt");
}
@@ -275,14 +284,6 @@ function filter_configure_sync() {
else
filter_tdr_install_cron(false);
- /*
- * we need a way to let a user run a shell cmd after each
- * filter_configure() call. run this xml command after
- * each change.
- */
- if($config['system']['afterfilterchangeshellcmd'] <> "")
- mwexec($config['system']['afterfilterchangeshellcmd']);
-
unlock($filterlck);
/* sync carp entries to other firewalls */
OpenPOWER on IntegriCloud