We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c99c80 commit 7d482fdCopy full SHA for 7d482fd
filesystem/usr/local/share/landoop/config_kafka.sh
@@ -33,8 +33,10 @@ function process_variable {
33
fi
34
# Convert underscores in var name to stops
35
conf="${conf//_/.}"
36
- # Convert double underscores in var name to dashes
37
- conf="${conf//../-}"
+ # Convert triple underscores in var name to dashes
+ conf="${conf//.../-}"
38
+ # Convert double underscores in var name to underscores
39
+ conf="${conf//../_}"
40
41
42
echo "${conf}=${!var}" >> "$config_file"
0 commit comments