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, next has been updated via 0bc46effda5f476d210152b13cf3bf843eb6729f (commit) via 4941ce0031e9a9f699d0d9ff100f26a6bbce1654 (commit) from deb11b3f693193fbadcf2b62aa0a416818da5c62 (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 0bc46effda5f476d210152b13cf3bf843eb6729f Author: Michael Tremer Date: Thu Feb 9 16:39:58 2023 +0000 core173: Ship services.cgi Signed-off-by: Michael Tremer commit 4941ce0031e9a9f699d0d9ff100f26a6bbce1654 Author: Jon Murphy Date: Mon Jan 16 14:34:04 2023 -0600 services.cgi: avoid experimental warnings - add single line to code: no warnings 'experimental'; - corrects this issue: https://lists.ipfire.org/pipermail/development/2022-December/015113.html Signed-off-by: Jon Murphy Signed-off-by: Michael Tremer ----------------------------------------------------------------------- Summary of changes: config/rootfiles/core/173/filelists/files | 1 + html/cgi-bin/services.cgi | 1 + 2 files changed, 2 insertions(+) Difference in files: diff --git a/config/rootfiles/core/173/filelists/files b/config/rootfiles/core/173/filelists/files index 880562a59..52b8cd643 100644 --- a/config/rootfiles/core/173/filelists/files +++ b/config/rootfiles/core/173/filelists/files @@ -152,6 +152,7 @@ lib/udev/network-hotplug-rename srv/web/ipfire/cgi-bin/ovpnmain.cgi srv/web/ipfire/cgi-bin/pppsetup.cgi srv/web/ipfire/cgi-bin/proxy.cgi +srv/web/ipfire/cgi-bin/services.cgi usr/lib/firewall/rules.pl var/ipfire/dhcpc/dhcpcd.conf var/ipfire/general-functions.pl diff --git a/html/cgi-bin/services.cgi b/html/cgi-bin/services.cgi index 3c0f27f99..0d06ab5fe 100644 --- a/html/cgi-bin/services.cgi +++ b/html/cgi-bin/services.cgi @@ -21,6 +21,7 @@ use strict; use feature "switch"; +no warnings 'experimental'; # enable only the following on debugging purpose #use warnings; #use CGI::Carp 'fatalsToBrowser'; hooks/post-receive -- IPFire 2.x development tree