From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4b9KmD6zCrz30NY for ; Sun, 1 Jun 2025 14:55:56 +0000 (UTC) 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 server-signature ECDSA (secp384r1) server-digest SHA384 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mail01.haj.ipfire.org", Issuer "R10" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4b9KmD6j1dz2xP7 for ; Sun, 1 Jun 2025 14:55:56 +0000 (UTC) Received: from people01.haj.ipfire.org (people01.haj.ipfire.org [172.28.1.161]) (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 client-signature ECDSA (secp384r1) client-digest SHA384) (Client CN "people01.haj.ipfire.org", Issuer "E6" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4b9KmD00pKz20D for ; Sun, 1 Jun 2025 14:55:55 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1748789756; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc; bh=djolKbJ3cWlrly2DujJlqxiQqSn6xp14MVULqLxbiBA=; b=L8MwsNhKUtXTc1oWIPvaeUf3irQho4uKgYPl2o+t2pR93aZSzt5YKBVCe3c9Yq+1hUCOv9 H5IbbLQj7uOzERBw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1748789756; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc; bh=djolKbJ3cWlrly2DujJlqxiQqSn6xp14MVULqLxbiBA=; b=iYugkz+EOtv6c0PsZ7lrQewh4cJ1AWMse6YORfSLwDbDY1ajojv4+sjTNQZD9sJOlyNHiL 1yzkULQakjTxWTYOeNDlXmkZFSWtEmI2Fd2Uw4oC2+j8aaECzOGlMupGXyw422GTpFDh8R nMY1dq03o8d+mZ/3RSw0L73DL+cNo4cRGgpkXf4soUSXW4HlVMHBkQ61dEC1OLaBI7U1j8 Rky5Lvwc9bVsv4tvoFAcCdrV58x/cEiXrBwfiiOG1vRe1P81gwG50bByc+MSdOU8YO4kcJ AOZ6fOMoLmaUfodyL0IRIp/EPsdrpFQHFziJmQB17Ge0t1yjOgl9jiAA5QC3wg== Received: by people01.haj.ipfire.org (Postfix, from userid 1000) id 4b9KmC4Sqmz2xhX; Sun, 1 Jun 2025 14:55:55 +0000 (UTC) To: ipfire-scm@lists.ipfire.org Subject: [git.ipfire.org] IPFire 2.x development tree branch, master, updated. 9ef726eeb272104656baf3c38eca75c4dc5bea10 X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 8a31117c0cc6c07aaadfe63f99cfda4c7a6b6ec3 X-Git-Newrev: 9ef726eeb272104656baf3c38eca75c4dc5bea10 Message-Id: <4b9KmC4Sqmz2xhX@people01.haj.ipfire.org> Date: Sun, 1 Jun 2025 14:55:55 +0000 (UTC) From: Michael Tremer Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree". The branch, master has been updated via 9ef726eeb272104656baf3c38eca75c4dc5bea10 (commit) from 8a31117c0cc6c07aaadfe63f99cfda4c7a6b6ec3 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 9ef726eeb272104656baf3c38eca75c4dc5bea10 Author: Michael Tremer Date: Sun Jun 1 15:19:13 2025 +0200 wireguard-functions.pl: Fix ListenPort The option was incorrectly named "Port" before. Signed-off-by: Michael Tremer ----------------------------------------------------------------------- Summary of changes: config/cfgroot/wireguard-functions.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Difference in files: diff --git a/config/cfgroot/wireguard-functions.pl b/config/cfgroot/wireguard-functions.pl index 11451a615..437c345ed 100644 --- a/config/cfgroot/wireguard-functions.pl +++ b/config/cfgroot/wireguard-functions.pl @@ -411,7 +411,7 @@ sub generate_peer_configuration($$) { push(@conf, "[Interface]", "PrivateKey = $private_key", - "Port = $peer->{'ENDPOINT_PORT'}", + "ListenPort = $peer->{'ENDPOINT_PORT'}", "", "[Peer]", "Endpoint = ${endpoint}:$peer->{'PORT'}", @@ -524,8 +524,8 @@ sub parse_configuration($$) { # Store the address $peer{'LOCAL_ADDRESS'} = ${address}; - # Port - } elsif ($key eq "Port") { + # ListenPort + } elsif ($key eq "ListenPort") { if (&General::validport($val)) { $peer{'PORT'} = $val; } else { hooks/post-receive -- IPFire 2.x development tree