Skip to content

Commit

Permalink
Add wget and nfs-utils deps needed for e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Ciprian Hacman committed Jan 8, 2020
1 parent 6990f8e commit a508c36
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions nodeup/pkg/model/miscutils.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,14 @@ func (b *MiscUtilsBuilder) Build(c *fi.ModelBuilderContext) error {
if b.Distribution.IsDebianFamily() {
packages = append(packages, "socat")
packages = append(packages, "curl")
packages = append(packages, "wget")
packages = append(packages, "nfs-common")
packages = append(packages, "python-apt")
packages = append(packages, "apt-transport-https")
} else if b.Distribution.IsRHELFamily() {
packages = append(packages, "curl")
packages = append(packages, "wget")
packages = append(packages, "nfs-utils")
packages = append(packages, "python2")
packages = append(packages, "git")
} else {
Expand Down

0 comments on commit a508c36

Please sign in to comment.