We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b69cc1 commit 252da28Copy full SHA for 252da28
1 file changed
manifests/windows.pp
@@ -63,7 +63,8 @@
63
if $agent_version == 'latest' {
64
$ensure_version = 'installed'
65
} else {
66
- $ensure_version = $agent_version
+ # While artifacts contain X.Y.Z in their name, their installed Windows versions are actually X.Y.Z.1
67
+ $ensure_version = "${agent_version}.1"
68
}
69
70
$hostname_option = $hostname ? { '' => {}, default => { 'HOSTNAME' => $hostname } }
0 commit comments