Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion engine/install/centos.md
Original file line number Diff line number Diff line change
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
Copy Markdown
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