Skip to content

Commit

Permalink
fix(puppet): wrong variable name replace
Browse files Browse the repository at this point in the history
  • Loading branch information
Pythyu committed Apr 26, 2024
1 parent 3611a8a commit f7dd8b0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@
}
class { 'datadog_agent::ubuntu':
agent_major_version => $_agent_major_version,
agent_full_version => $agent_full_version,
agent_version => $agent_full_version,
agent_flavor => $agent_flavor,
agent_repo_uri => $agent_repo_uri,
release => $apt_release,
Expand All @@ -466,15 +466,15 @@
agent_flavor => $agent_flavor,
agent_repo_uri => $agent_repo_uri,
manage_repo => $manage_repo,
agent_full_version => $agent_full_version,
agent_version => $agent_full_version,
rpm_repo_gpgcheck => $rpm_repo_gpgcheck,
}
}
'Windows' : {
class { 'datadog_agent::windows' :
agent_major_version => $_agent_major_version,
agent_repo_uri => $agent_repo_uri,
agent_full_version => $agent_full_version,
agent__version => $agent_full_version,
msi_location => $win_msi_location,
api_key => $api_key,
hostname => $host,
Expand All @@ -493,7 +493,7 @@
agent_major_version => $_agent_major_version,
agent_flavor => $agent_flavor,
agent_repo_uri => $agent_repo_uri,
agent_full_version => $agent_full_version,
agent_version => $agent_full_version,
rpm_repo_gpgcheck => $rpm_repo_gpgcheck,
}
}
Expand Down

0 comments on commit f7dd8b0

Please sign in to comment.