Skip to content

Commit

Permalink
PRODENG-2797 EL linux preinstalls openssh (#523)
Browse files Browse the repository at this point in the history
- Rocky/RHEL 9 platforms curl install breaks ssh without adding it to
  the package list

Signed-off-by: James Nesbitt <[email protected]>
  • Loading branch information
james-nesbitt authored Nov 26, 2024
1 parent ea2414c commit 1979518
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/configurer/enterpriselinux/el.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ type Configurer struct {

// InstallMKEBasePackages install all the needed base packages on the host.
func (c Configurer) InstallMKEBasePackages(h os.Host) error {
if err := c.InstallPackage(h, "curl", "socat", "iptables", "iputils", "gzip"); err != nil {
if err := c.InstallPackage(h, "curl", "socat", "iptables", "iputils", "gzip", "openssh"); err != nil {
return fmt.Errorf("failed to install base packages: %w", err)
}
return nil
Expand Down

0 comments on commit 1979518

Please sign in to comment.