* [PATCH] update-ids-ruleset: Silent script if no providers settings file exists.
@ 2022-05-13 17:10 Stefan Schantl
2022-05-13 20:12 ` Michael Tremer
0 siblings, 1 reply; 2+ messages in thread
From: Stefan Schantl @ 2022-05-13 17:10 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1105 bytes --]
Only try to read-in the providers settings file, in case it exists.
Otherwise the script produces an error message, about the missing file,
each time it gets executed.
Because of the fcron job this would be twice a day in most cases.
Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
src/scripts/update-ids-ruleset | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/scripts/update-ids-ruleset b/src/scripts/update-ids-ruleset
index e9a082e62..553c1a1e1 100644
--- a/src/scripts/update-ids-ruleset
+++ b/src/scripts/update-ids-ruleset
@@ -95,8 +95,8 @@ if ($return) {
# The script has requested a lock, so set locket to "1".
$locked = "1";
-# Grab the configured providers.
-&General::readhasharray("$IDS::providers_settings_file", \%providers);
+# Grab the configured providers, if the providers settings file exists.
+&General::readhasharray("$IDS::providers_settings_file", \%providers) if (-f "$IDS::providers_settings_file");
# Loop through the array of available providers.
foreach my $id (keys %providers) {
--
2.30.2
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] update-ids-ruleset: Silent script if no providers settings file exists.
2022-05-13 17:10 [PATCH] update-ids-ruleset: Silent script if no providers settings file exists Stefan Schantl
@ 2022-05-13 20:12 ` Michael Tremer
0 siblings, 0 replies; 2+ messages in thread
From: Michael Tremer @ 2022-05-13 20:12 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1303 bytes --]
Reviewed-by: Michael Tremer <michael.tremer(a)ipfire.org>
> On 13 May 2022, at 18:10, Stefan Schantl <stefan.schantl(a)ipfire.org> wrote:
>
> Only try to read-in the providers settings file, in case it exists.
> Otherwise the script produces an error message, about the missing file,
> each time it gets executed.
>
> Because of the fcron job this would be twice a day in most cases.
>
> Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
> ---
> src/scripts/update-ids-ruleset | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/src/scripts/update-ids-ruleset b/src/scripts/update-ids-ruleset
> index e9a082e62..553c1a1e1 100644
> --- a/src/scripts/update-ids-ruleset
> +++ b/src/scripts/update-ids-ruleset
> @@ -95,8 +95,8 @@ if ($return) {
> # The script has requested a lock, so set locket to "1".
> $locked = "1";
>
> -# Grab the configured providers.
> -&General::readhasharray("$IDS::providers_settings_file", \%providers);
> +# Grab the configured providers, if the providers settings file exists.
> +&General::readhasharray("$IDS::providers_settings_file", \%providers) if (-f "$IDS::providers_settings_file");
>
> # Loop through the array of available providers.
> foreach my $id (keys %providers) {
> --
> 2.30.2
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-05-13 20:12 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-13 17:10 [PATCH] update-ids-ruleset: Silent script if no providers settings file exists Stefan Schantl
2022-05-13 20:12 ` Michael Tremer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox