Skip to content

Commit

Permalink
Account for ELS rollout repos as well
Browse files Browse the repository at this point in the history
case RE-534: Thankfully is just a simple regexp to catch all these.

Changelog: Don't block on ELS rollout repo slots
  • Loading branch information
troglodyne committed Jul 9, 2024
1 parent da09542 commit 67a07a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion elevate-cpanel
Original file line number Diff line number Diff line change
Expand Up @@ -5583,7 +5583,7 @@ EOS

my @repos = $self->SUPER::vetted_yum_repo();

push @repos, 'centos7-els';
push @repos, qr/centos7[-]*els(-rollout-[0-9]+|)/;
return @repos;
}

Expand Down
2 changes: 1 addition & 1 deletion lib/Elevate/OS/CentOS7.pm
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ sub vetted_yum_repo ($self) {
my @repos = $self->SUPER::vetted_yum_repo();

# A component uninstalls this repo on CentOS 7, no need to block on it
push @repos, 'centos7-els';
push @repos, qr/centos7[-]*els(-rollout-[0-9]+|)/;
return @repos;
}

Expand Down

0 comments on commit 67a07a1

Please sign in to comment.