Skip to content

Commit 1a0f3c8

Browse files
committed
Return nothing from init scripts to avoid empty list output during startup
1 parent f08ca72 commit 1a0f3c8

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

overlay/etc/bf/init.d/22-php-ini.nu

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,7 @@ export def main [] {
1010
let override_values = bf fs read $x | from json
1111
bf-php ini $override_values
1212
} }
13+
14+
# return nothing
15+
return
1316
}

overlay/etc/bf/init.d/23-www-conf.nu

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,7 @@ export def main [] {
1515
let override_values = bf fs read $x | from json
1616
bf-php ini insert_or_replace_values_in_file $fpm_conf $override_values
1717
} }
18+
19+
# return nothing
20+
return
1821
}

0 commit comments

Comments
 (0)