Skip to content

Commit

Permalink
Revert
Browse files Browse the repository at this point in the history
  • Loading branch information
Universal-Omega authored Mar 24, 2024
1 parent 0269a59 commit 57721e2
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions modules/mediawiki/manifests/jobqueue/shared.pp
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,13 @@
VMlib::Ensure $ensure = present,
String $version,
) {
if !defined(Package['composer']) and $ensure == present {
stdlib::ensure_packages('composer')
if !defined(Package['composer']) {
stdlib::ensure_packages(
'composer',
{
ensure => $ensure,
},
)
}

if versioncmp($version, '1.40') >= 0 {
Expand Down

0 comments on commit 57721e2

Please sign in to comment.