Skip to content

Commit

Permalink
Merge pull request #52 from lsst-it/rhel8_prerequisites
Browse files Browse the repository at this point in the history
Add wget as a required system package
  • Loading branch information
glennmorris authored Oct 18, 2023
2 parents 00ef9b1 + 8d25b67 commit 6ffc745
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions manifests/pre.pp
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
'unzip',
'git',
'python3',
'wget',
]

ensure_packages($deps)
Expand Down
2 changes: 1 addition & 1 deletion spec/acceptance/basic_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ class { 'ccs_software':
end

# package deps
%w[unzip git].each do |p|
%w[unzip git wget].each do |p|
describe package(p) do
it { is_expected.to be_installed }
end
Expand Down
1 change: 1 addition & 0 deletions spec/classes/init_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@
it do
is_expected.to contain_package('unzip')
is_expected.to contain_package('git')
is_expected.to contain_package('wget')
end
end

Expand Down

0 comments on commit 6ffc745

Please sign in to comment.