From f08ca72cc8e6e2af43d2b3c3dc0b3d2310b3593b Mon Sep 17 00:00:00 2001 From: bfren Date: Fri, 12 Sep 2025 14:15:26 +0100 Subject: [PATCH 1/2] Bumping version to 7.5.2 --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 7501d50..26fb97c 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -7.5.1 \ No newline at end of file +7.5.2 \ No newline at end of file From 1a0f3c87e8a8d7f56700d36a75f2b388a28b0de7 Mon Sep 17 00:00:00 2001 From: bfren Date: Fri, 12 Sep 2025 14:15:46 +0100 Subject: [PATCH 2/2] Return nothing from init scripts to avoid empty list output during startup --- overlay/etc/bf/init.d/22-php-ini.nu | 3 +++ overlay/etc/bf/init.d/23-www-conf.nu | 3 +++ 2 files changed, 6 insertions(+) diff --git a/overlay/etc/bf/init.d/22-php-ini.nu b/overlay/etc/bf/init.d/22-php-ini.nu index 80daf96..a52f7e2 100644 --- a/overlay/etc/bf/init.d/22-php-ini.nu +++ b/overlay/etc/bf/init.d/22-php-ini.nu @@ -10,4 +10,7 @@ export def main [] { let override_values = bf fs read $x | from json bf-php ini $override_values } } + + # return nothing + return } diff --git a/overlay/etc/bf/init.d/23-www-conf.nu b/overlay/etc/bf/init.d/23-www-conf.nu index 2737069..ccfea83 100644 --- a/overlay/etc/bf/init.d/23-www-conf.nu +++ b/overlay/etc/bf/init.d/23-www-conf.nu @@ -15,4 +15,7 @@ export def main [] { let override_values = bf fs read $x | from json bf-php ini insert_or_replace_values_in_file $fpm_conf $override_values } } + + # return nothing + return }