We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 442150f + 1d69cf0 commit aa18ee8Copy full SHA for aa18ee8
1 file changed
libmachine/provision/redhat.go
@@ -43,6 +43,9 @@ func init() {
43
func NewRedHatProvisioner(osReleaseID string, d drivers.Driver) *RedHatProvisioner {
44
systemdProvisioner := NewSystemdProvisioner(osReleaseID, d)
45
systemdProvisioner.SSHCommander = RedHatSSHCommander{Driver: d}
46
+ // need to install "openssh" and "openssl" together with "curl" since curl installation was causing "openssl"
47
+ // to auto-upgrade and because of that "openssh" version was out of sync with "openssl" which was causing ssh failure
48
+ systemdProvisioner.Packages = []string{"curl openssh openssl"}
49
return &RedHatProvisioner{
50
systemdProvisioner,
51
}
0 commit comments