public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: Stefan Schantl <stefan.schantl@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH 4/4] general-functions.pl: Do not die if no red interface could be determined.
Date: Wed, 09 Mar 2022 15:12:32 +0100	[thread overview]
Message-ID: <20220309141232.2401848-4-stefan.schantl@ipfire.org> (raw)
In-Reply-To: <20220309141232.2401848-1-stefan.schantl@ipfire.org>

[-- Attachment #1: Type: text/plain, Size: 1113 bytes --]

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";
-
-	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


  parent reply	other threads:[~2022-03-09 14:12 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 ` Stefan Schantl [this message]
2022-03-09 14:26   ` [PATCH 4/4] general-functions.pl: Do not die if no red interface could be determined Michael Tremer

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=20220309141232.2401848-4-stefan.schantl@ipfire.org \
    --to=stefan.schantl@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