Skip to content

Commit

Permalink
Fixes #36938 - Ignore output of some commands in Global Registration
Browse files Browse the repository at this point in the history
  • Loading branch information
stejskalleos committed Nov 29, 2023
1 parent f3a73bb commit b404794
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ if [ -x "$(command -v subscription-manager)" ] ; then
subscription-manager clean
fi

$PKG_MANAGER_REMOVE katello-ca-consumer\*
$PKG_MANAGER_REMOVE katello-ca-consumer\* > /dev/null 2>&1
<% end -%>

# Prepare SSL certificate
Expand All @@ -175,7 +175,7 @@ chmod 644 $KATELLO_SERVER_CA_CERT
if ! [ -x "$(command -v subscription-manager)" ] ; then
$PKG_MANAGER_INSTALL subscription-manager
else
$PKG_MANAGER_UPGRADE subscription-manager
$PKG_MANAGER_UPGRADE subscription-manager > /dev/null 2>&1
fi

if ! [ -f $RHSM_CFG ] ; then
Expand Down

0 comments on commit b404794

Please sign in to comment.