From 7325baf75047b34c8e68aa9a7fb54600e50701cc Mon Sep 17 00:00:00 2001 From: Geoff Bourne Date: Thu, 8 Jan 2026 18:28:04 -0600 Subject: [PATCH] Default Folia channel to stable rather than experimental (#3861) --- build/ol/install-packages.sh | 1 + scripts/start-deployFolia | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/build/ol/install-packages.sh b/build/ol/install-packages.sh index 23ea9c36..943e1b95 100755 --- a/build/ol/install-packages.sh +++ b/build/ol/install-packages.sh @@ -68,6 +68,7 @@ dnf clean all curl -fsSL -o /tmp/knock.tar.gz https://github.com/Metalcape/knock/releases/download/0.8.1/knock-0.8.1-$TARGET.tar.gz tar -xf /tmp/knock.tar.gz -C /usr/local/ && rm /tmp/knock.tar.gz ln -s /usr/local/sbin/knockd /usr/sbin/knockd +ls -l /usr/local/sbin/knockd setcap cap_net_raw=ep /usr/local/sbin/knockd # Set git credentials globally diff --git a/scripts/start-deployFolia b/scripts/start-deployFolia index a51f1716..f10decfe 100644 --- a/scripts/start-deployFolia +++ b/scripts/start-deployFolia @@ -1,6 +1,6 @@ #!/bin/bash -: "${FOLIA_CHANNEL:=experimental}" +: "${FOLIA_CHANNEL:=default}" # shellcheck source=start-utils . "$(dirname "$0")/start-utils"