Skip to content

Commit

Permalink
Merge pull request #314 from vardhaman22/fix-rhel-prov
Browse files Browse the repository at this point in the history
[RKE] [RHEL]: install openssl and openssh with curl
  • Loading branch information
vardhaman22 authored Nov 29, 2024
2 parents 442150f + 1d69cf0 commit aa18ee8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions libmachine/provision/redhat.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ func init() {
func NewRedHatProvisioner(osReleaseID string, d drivers.Driver) *RedHatProvisioner {
systemdProvisioner := NewSystemdProvisioner(osReleaseID, d)
systemdProvisioner.SSHCommander = RedHatSSHCommander{Driver: d}
// need to install "openssh" and "openssl" together with "curl" since curl installation was causing "openssl"
// to auto-upgrade and because of that "openssh" version was out of sync with "openssl" which was causing ssh failure
systemdProvisioner.Packages = []string{"curl openssh openssl"}
return &RedHatProvisioner{
systemdProvisioner,
}
Expand Down

0 comments on commit aa18ee8

Please sign in to comment.