Only service lines (without =) are processed by the service loop
This commit is contained in:
@@ -112,9 +112,9 @@ rm -rf "$tls_tmp_path"
|
|||||||
|
|
||||||
# Read and process service list
|
# Read and process service list
|
||||||
while IFS= read -r line || [ -n "$line" ]; do
|
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
|
case "$line" in
|
||||||
''|\#*) continue ;;
|
''|\#*|*=*) continue ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
# Extract service, owner and sync parameters
|
# Extract service, owner and sync parameters
|
||||||
|
|||||||
Reference in New Issue
Block a user