aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRenato Botelho <renato@netgate.com>2015-09-11 16:55:52 -0300
committerRenato Botelho <renato@netgate.com>2015-09-11 16:55:52 -0300
commitfd592addeff71724326566cf2616881d2a773647 (patch)
tree411f46cf1ffcc2b5af6525319e9c900f174aadb0
parentd8a8828ab693a3db1ac2f93b8b52f8816c3866d0 (diff)
parent2587e3661c973b0aac3b089806e0d1ed1e253c1f (diff)
downloadpfsense-packages-fd592addeff71724326566cf2616881d2a773647.tar.gz
pfsense-packages-fd592addeff71724326566cf2616881d2a773647.tar.bz2
pfsense-packages-fd592addeff71724326566cf2616881d2a773647.zip
Merge pull request #1057 from doktornotor/patch-2
-rw-r--r--config/havp/havp.inc4
-rw-r--r--config/havp/havp_avset.xml7
-rw-r--r--pkg_config.10.xml2
3 files changed, 6 insertions, 7 deletions
diff --git a/config/havp/havp.inc b/config/havp/havp.inc
index 5ecfcc29..38412f31 100644
--- a/config/havp/havp.inc
+++ b/config/havp/havp.inc
@@ -521,12 +521,12 @@ function havp_reconfigure_cron() {
$optval = array("", "*/1", "*/2", "*/3", "*/4", "*/6", "*/8", "*/12", "0");
$opt = array("0", "*", "*", "*", "*", "root");
$opt[1] = $optval[$havp_config[F_HAVPUPDATE]];
- $on = ($opt[1] !== "");
+ $on = ($opt[1] != "");
$crontask = "/usr/bin/nice -n20 " . HVDEF_AVUPD_SCRIPT;
// Set new cron task or remove it if inactive
if ($on === true) {
- install_cron_job($crontask, $on, $opt);
+ install_cron_job($crontask, true, $opt[0], $opt[1], $opt[2], $opt[3], $opt[4], $opt[5]);
} else {
install_cron_job($crontask, false);
}
diff --git a/config/havp/havp_avset.xml b/config/havp/havp_avset.xml
index c6429724..0f8ac5e6 100644
--- a/config/havp/havp_avset.xml
+++ b/config/havp/havp_avset.xml
@@ -69,13 +69,12 @@
<tab>
<text>HAVP Log</text>
<url>/havp_log.php?logtab=havp</url>
- </tab>
- </tabs>
+ </tab>
<tab>
<text>Clamd Log</text>
<url>/havp_log.php?logtab=clamd</url>
- </tab>
- </tabs>
+ </tab>
+ </tabs>
<fields>
<field>
<fielddescr>ClamAV Database Update</fielddescr>
diff --git a/pkg_config.10.xml b/pkg_config.10.xml
index 082bf101..6d4c2b2c 100644
--- a/pkg_config.10.xml
+++ b/pkg_config.10.xml
@@ -1201,7 +1201,7 @@
<ports_after>security/clamav</ports_after>
</build_pbi>
<build_options>CLAMAVUSER=havp;CLAMAVGROUP=havp</build_options>
- <version>1.07</version>
+ <version>1.08</version>
<status>BETA</status>
<required_version>2.2</required_version>
<config_file>https://packages.pfsense.org/packages/config/havp/havp.xml</config_file>