Skip to content

Commit

Permalink
Merge pull request #245 from troglodyne/fix_more_ssystem
Browse files Browse the repository at this point in the history
Fix more bad ssystem calls
  • Loading branch information
toddr committed Apr 28, 2023
2 parents 021f4b1 + 71634b9 commit 1e88890
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion elevate-cpanel
Expand Up @@ -5795,7 +5795,7 @@ sub remove_rpms_from_repos ( $self, @repo_list ) {

INFO( "Removing packages for " . join( ", ", @repo_list ) );

__PACKAGE__->ssystem( qw{/usr/bin/yum -y erase}, @to_remove );
$self->ssystem( qw{/usr/bin/yum -y erase}, @to_remove );

return;
}
Expand Down
2 changes: 1 addition & 1 deletion script/elevate-cpanel.PL
Expand Up @@ -1538,7 +1538,7 @@ sub remove_rpms_from_repos ( $self, @repo_list ) {

INFO( "Removing packages for " . join( ", ", @repo_list ) );

__PACKAGE__->ssystem( qw{/usr/bin/yum -y erase}, @to_remove );
$self->ssystem( qw{/usr/bin/yum -y erase}, @to_remove );

return;
}
Expand Down

0 comments on commit 1e88890

Please sign in to comment.