Literal dollar sign in tcServer template
I'm creating a template with a property that should have the following value after the template is used to create an instance:
Code:
dev.http.port=${bio.http.port}
When I put this in my property file in the template the tcruntime-instance script looks for a property named "bio.http.port", doesn't find it, and then the script fails.
I've tried using
Code:
dev.http.port=\${bio.http.port}
and
Code:
dev.http.port=$${bio.http.port}
but get the same error every time.
Does anyone know how to escape a ${} setting in a template configuration file?