-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed: - Fix the main class to work with EL7+ - Fix the acceptance tests Changed: - Removed EL6 support SIMP-8823 #close
- Loading branch information
1 parent
ccb8d6b
commit b778728
Showing
7 changed files
with
48 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
* Wed Dec 02 2020 Trevor Vaughan <[email protected]> - 1.2.1-0 | ||
- Remove EL6 support | ||
- Fix the main class to work with EL7+ | ||
- Fix the acceptance tests | ||
|
||
* Fri Dec 06 2019 Trevor Vaughan <[email protected]> - 1.2.0-0 | ||
- Add EL8 support | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
require 'spec_helper_acceptance' | ||
|
||
test_name 'acpid class' | ||
|
||
describe 'acpid class' do | ||
let(:manifest) { | ||
<<-EOS | ||
include '::acpid' | ||
EOS | ||
} | ||
|
||
hosts.each do |host| | ||
context "on #{host}" do | ||
# Using puppet_apply as a helper | ||
it 'should work with no errors' do | ||
apply_manifest(manifest, :catch_failures => true) | ||
end | ||
|
||
it 'should be idempotent' do | ||
apply_manifest(manifest, {:catch_changes => true}) | ||
end | ||
|
||
describe package('acpid') do | ||
it { is_expected.to be_installed } | ||
end | ||
|
||
describe service('acpid') do | ||
it { is_expected.to be_enabled } | ||
it { is_expected.to be_running } | ||
end | ||
end | ||
end | ||
end |
This file was deleted.
Oops, something went wrong.