init.d: ignore dirs in custom.d

This commit is contained in:
bol-van 2024-10-13 13:25:19 +03:00
parent 5a5d9f7f31
commit 20e6ba721a

View File

@ -16,6 +16,7 @@ custom_runner()
n=$(ls "$CUSTOM_DIR/custom.d" | wc -c | xargs)
[ "$n" = 0 ] || {
for script in "$CUSTOM_DIR/custom.d/"*; do
[ -f "$script" ] || continue
unset -f $FUNC
. "$script"
existf $FUNC && $FUNC "$@"