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 f635a96 commit d057686Copy full SHA for d057686
1 file changed
recipes/newrelic/infrastructure/windows.yml
@@ -237,6 +237,17 @@ install:
237
"@
238
239
Add-Content -Path $InfraConfig -Value $customAttributes -Force -Encoding utf8
240
+
241
+ # Installation paths
242
+ $NRIA_AGENT_DIR = "{{.NRIA_AGENT_DIR}}"
243
+ if ($NRIA_AGENT_DIR) {
244
+ Add-Content -Path $InfraConfig -Value "agent_dir: $NRIA_AGENT_DIR" -Force -Encoding utf8
245
+ }
246
247
+ $NRIA_PLUGIN_DIR = "{{.NRIA_PLUGIN_DIR}}"
248
+ if ($NRIA_PLUGIN_DIR) {
249
+ Add-Content -Path $InfraConfig -Value "plugin_dir: $NRIA_PLUGIN_DIR" -Force -Encoding utf8
250
251
'
252
253
start_infra:
0 commit comments