From: Michael Tremer <michael.tremer@ipfire.org>
To: development@lists.ipfire.org
Subject: Re: [PATCH 4/4] general-functions.pl: Do not die if no red interface could be determined.
Date: Wed, 09 Mar 2022 14:26:31 +0000 [thread overview]
Message-ID: <C5224107-FA91-48FC-8673-5973BB190FD7@ipfire.org> (raw)
In-Reply-To: <20220309141232.2401848-4-stefan.schantl@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 1421 bytes --]
Hello Stefan,
> On 9 Mar 2022, at 14:12, Stefan Schantl <stefan.schantl(a)ipfire.org> wrote:
>
> Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
> ---
> config/cfgroot/general-functions.pl | 15 +++++++++------
> 1 file changed, 9 insertions(+), 6 deletions(-)
>
> diff --git a/config/cfgroot/general-functions.pl b/config/cfgroot/general-functions.pl
> index 5118a9d69..6f49585dc 100644
> --- a/config/cfgroot/general-functions.pl
> +++ b/config/cfgroot/general-functions.pl
> @@ -1228,12 +1228,15 @@ sub firewall_reload() {
> # Function which will return the used interface for the red network zone (red0, ppp0, etc).
> # if you change this also check speed.cgi that include a local copy for systemload reasons
> sub get_red_interface() {
> -
> - open(IFACE, "${General::swroot}/red/iface") or die "Could not open /var/ipfire/red/iface";
You could have just replaced the “die …” part with a return statement and save the extra check if the file exists.
Best,
-Michael
> -
> - my $interface = <IFACE>;
> - close(IFACE);
> - chomp $interface;
> + my $interface;
> + my $red_iface_file = "${General::swroot}/red/iface";
> +
> + if (-e $red_iface_file) {
> + open(IFACE, "$red_iface_file") or die "Could not open $red_iface_file";
> + $interface = <IFACE>;
> + close(IFACE);
> + chomp $interface;
> + }
>
> return $interface;
> }
> --
> 2.30.2
>
prev parent reply other threads:[~2022-03-09 14:26 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-09 14:12 [PATCH 1/4] libloc: Update to 0.9.11 Stefan Schantl
2022-03-09 14:12 ` [PATCH 2/4] rules.pl: Adjust code to use sets generated by libloc 0.9.11 Stefan Schantl
2022-03-09 14:12 ` [PATCH 3/4] rules.pl: Do not create HOSTILE rules if no red dev is available Stefan Schantl
2022-03-09 14:12 ` [PATCH 4/4] general-functions.pl: Do not die if no red interface could be determined Stefan Schantl
2022-03-09 14:26 ` Michael Tremer [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=C5224107-FA91-48FC-8673-5973BB190FD7@ipfire.org \
--to=michael.tremer@ipfire.org \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox