This repository was archived by the owner on Apr 16, 2018. It is now read-only.
Commit 55a3583
committed
Fix the checkcommand template vars attribute handling
so the vars are written correctly into the CheckCommand object configuration. Before
the fix the template produced the following CheckCommand object configruation for
the vars attribute:
vars += {
vars.http_address = "$address$",
vars.http_ssl = false,
vars.http_sni = false
}
instead of the desired
vars.http_address = "$address$",
vars.http_ssl = false,
vars.http_sni = false1 parent c6f5b38 commit 55a3583
2 files changed
+6
-5
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
640 | 640 | | |
641 | 641 | | |
642 | 642 | | |
643 | | - | |
644 | | - | |
645 | | - | |
| 643 | + | |
| 644 | + | |
| 645 | + | |
646 | 646 | | |
647 | 647 | | |
648 | 648 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
2 | 1 | | |
3 | 2 | | |
4 | 3 | | |
| |||
25 | 24 | | |
26 | 25 | | |
27 | 26 | | |
28 | | - | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
29 | 30 | | |
30 | 31 | | |
31 | 32 | | |
| |||
0 commit comments