Skip to content

Commit

Permalink
commit changes
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamin-robertson committed May 24, 2024
1 parent efe89bf commit de3c9fb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spec/acceptance/observium_install_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
require 'spec_helper_acceptance'

describe 'Installation', if: ['centos', 'redhat', 'ubuntu'].include?(os[:family]) do
# before(:all) do
# system('yum -y install crontabs')
# end
before(:all) do
install_packge('crontabs')
end

let(:pp) do
<<-MANIFEST
Expand Down
5 changes: 5 additions & 0 deletions spec/spec_helper_acceptance_local.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
include PuppetLitmus

def install_packge(package)
run_shell("yum -y install #{package}")
end

0 comments on commit de3c9fb

Please sign in to comment.