Skip to content

Commit

Permalink
consistently use stdlib::ensure_packages()
Browse files Browse the repository at this point in the history
In b608826 ewoud already introduced
`stdlib::ensure_packages()`. There's another place that used the legacy
`ensure_packages()` function. It's deprecated since stdlib 9. This
commit updates the old code to also use `stdlib::ensure_packages()`
  • Loading branch information
bastelfreak authored and ekohl committed Apr 2, 2024
1 parent b608826 commit 29ef40c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manifests/server/install.pp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
}

if $puppet::server::git_repo {
ensure_packages(['git'])
stdlib::ensure_packages(['git'])
}

if $puppet::server::manage_user {
Expand Down

0 comments on commit 29ef40c

Please sign in to comment.