Only service lines (without =) are processed by the service loop

This commit is contained in:
2025-05-19 23:33:18 +02:00
parent f2676498cd
commit 59ada2477a

View File

@@ -112,9 +112,9 @@ rm -rf "$tls_tmp_path"
# Read and process service list
while IFS= read -r line || [ -n "$line" ]; do
# Skip empty lines and lines starting with #
# Skip empty lines, comments and global settings (lines with '=')
case "$line" in
''|\#*) continue ;;
''|\#*|*=*) continue ;;
esac
# Extract service, owner and sync parameters