From patchwork Mon Sep 15 12:03:25 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 9079 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail01.haj.ipfire.org", Issuer "R13" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4cQNwN1Wrhz3wk2 for ; Mon, 15 Sep 2025 12:03:32 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail02.haj.ipfire.org", Issuer "E8" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4cQNwM5SXZzm7 for ; Mon, 15 Sep 2025 12:03:31 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4cQNwM4m4Zz2yVK for ; Mon, 15 Sep 2025 12:03:31 +0000 (UTC) X-Original-To: development@lists.ipfire.org Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail01.haj.ipfire.org", Issuer "R13" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4cQNwK0DNlz2xMK for ; Mon, 15 Sep 2025 12:03:29 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4cQNwH6Sy3z1VJ; Mon, 15 Sep 2025 12:03:27 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1757937808; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=09rGla7PmK0GWptRGX9djMHb00QaPIdkoUjjJuUTqOE=; b=eO/HwynTO71l9zHcvWlihaRbVxWimPcEBN/txfw4VAcNF9GId8Upnz2L5x4yRmUwEr95M/ xishf06RL0QySdAg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1757937808; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=09rGla7PmK0GWptRGX9djMHb00QaPIdkoUjjJuUTqOE=; b=kXqb1QvEaUIxe8x9NTYun7y2sIFecB/zvkfLQ/8OqFKAI2CnpDacQ71CVA9HQNGE7wo6DT VhOdi0iraGFxei6sBCjLHqhCsF2aWkyLcemzFgP3Je1RFzgfyrphIpi0GfzOa/ICnJQxZc wrYzu1k2b4LNEFIyWMRu5QgeKxRKYw5Op/iOBXiaajFJampG2RZOdk0zn3CXkI6dIOboFT VO9U4I7N1hJ+NSOk/1PJFJLMP0biHmya0//jvGDdo9mA1KGP/g2s/SQ8Hkiy0lFEpXYbZy Y6G7juqWMBBRasL2Km+GejdacxYuUKpBvtGHfxO5F9NVfD31giAyBP7PX1MzNQ== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH] ids.cgi: Update openvpn.pid to openvpn-rw.pid Date: Mon, 15 Sep 2025 14:03:25 +0200 Message-ID: <20250915120325.2558883-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 - This is needed to enable showing of the OpenVPN as a zone to use for the IDS Signed-off-by: Adolf Belka --- html/cgi-bin/ids.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/cgi-bin/ids.cgi b/html/cgi-bin/ids.cgi index 960e72ef1..d96aa850b 100644 --- a/html/cgi-bin/ids.cgi +++ b/html/cgi-bin/ids.cgi @@ -57,7 +57,7 @@ my @network_zones = &Network::get_available_network_zones(); push(@network_zones, "ipsec", "wg"); # Check if openvpn is started and add it to the array of network zones. -if ( -e "/var/run/openvpn.pid") { +if ( -e "/var/run/openvpn-rw.pid") { push(@network_zones, "ovpn"); }