Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated yum -y install yum-utils to yum -y upgrade #13555

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion engine/install/centos.md
Expand Up @@ -83,7 +83,7 @@ Install the `yum-utils` package (which provides the `yum-config-manager`
utility) and set up the **stable** repository.

```console
$ sudo yum install -y yum-utils
$ sudo yum -y upgrade
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks to be addressing different goals;

 sudo yum install -y yum-utils

Is added here to make sure yum-config-manager is installed (which is used below).

yum upgrade will update / upgrade all packages and dependencies installed on the machine. While this could be a good recommendation, this would be somewhat out of scope for the installation instructions.

What's the exact problem you ran into? Did the installation fail, or did it warn that a newer version of a dependency was needed?


$ sudo yum-config-manager \
--add-repo \
Expand Down