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

[v1.0.4] [CentOS/RHEL] Ensure ca-certificates package is in the latest version #3165

Merged
merged 2 commits into from
May 27, 2022
Merged
Show file tree
Hide file tree
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
6 changes: 6 additions & 0 deletions CHANGELOG-1.0.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog 1.0

## [1.0.4] 2022-xx-xx

### Fixed

- [#3165](https://github.com/epiphany-platform/epiphany/issues/3165) - [CentOS/RHEL] download-requirements.sh fails due to expired certificate

## [1.0.3] 2022-05-16

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -571,6 +571,9 @@ else
fi
fi

# Ensure ca-certificates package is in the latest version
run_cmd_with_retries yum install -y ca-certificates 3

# --- Install required packages unless present ---

# repos can be enabled or disabled using the yum-config-manager command, which is provided by yum-utils package
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -593,6 +593,9 @@ if is_repo_enabled "rhui-microsoft-azure-rhel"; then
run_cmd_with_retries yum update -y --disablerepo='*' --enablerepo='rhui-microsoft-azure-rhel*' 3
fi

# Ensure ca-certificates package is in the latest version
run_cmd_with_retries yum install -y ca-certificates 3

# --- Install required packages unless present ---

# repos can be enabled or disabled using the yum-config-manager command, which is provided by yum-utils package
Expand Down