From 59ada2477a9254a4b2f495b9b5bea4244aa2c9ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20D=C3=BCsterhaupt?= Date: Mon, 19 May 2025 23:33:18 +0200 Subject: [PATCH] Only service lines (without =) are processed by the service loop --- edh-keygen.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/edh-keygen.sh b/edh-keygen.sh index 11bfa65..70ea91f 100644 --- a/edh-keygen.sh +++ b/edh-keygen.sh @@ -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