-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Work around Amazon Linux 2 repository issue (#176)
* Work around Amazon Linux 2 repository issus * Not actually managed by Puppetsync (yet) * Also re-adding some gem-specific .gitignore contents * Remove errant Ruby code Looks like an accidental copypasta from `lib/simp/beaker_helpers.rb` and was failing the `.gitlab-ci.yml` checks Closes #175 Co-authored-by: op-ct <[email protected]>
- Loading branch information
1 parent
fa042df
commit fa5b6b9
Showing
7 changed files
with
98 additions
and
6 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,9 +1,24 @@ | ||
.*.sw? | ||
.yardoc | ||
.idea/ | ||
.fips_fixtures.yml | ||
*.gem | ||
*.swp | ||
Gemfile.lock | ||
.bundle/ | ||
*.old | ||
.vagrant | ||
dist | ||
/pkg | ||
# Read everything in fixtures | ||
/spec/fixtures/* | ||
# Un-ignore hieradata | ||
!/spec/fixtures/hieradata/* | ||
# Except this one, which is auto-generated | ||
/spec/fixtures/hieradata/hiera.yaml | ||
/spec/rp_env | ||
/.rspec_system | ||
/.vagrant | ||
/.bundle | ||
/.vendor | ||
/vendor | ||
/junit | ||
/log | ||
/spec/fixtures | ||
/doc |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module Simp; end | ||
|
||
module Simp::BeakerHelpers | ||
VERSION = '1.24.4' | ||
VERSION = '1.24.5' | ||
end |
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,24 @@ | ||
<% | ||
if ENV['BEAKER_HYPERVISOR'] | ||
hypervisor = ENV['BEAKER_HYPERVISOR'] | ||
else | ||
hypervisor = 'vagrant' | ||
end | ||
-%> | ||
HOSTS: | ||
amzn2: | ||
roles: | ||
- master | ||
- default | ||
platform: el-7-x86_64 | ||
box: gbailey/amzn2 | ||
hypervisor: <%= hypervisor %> | ||
|
||
CONFIG: | ||
log_level: verbose | ||
synced_folder : disabled | ||
type: aio | ||
vagrant_memsize: 512 | ||
<% if ENV['BEAKER_PUPPET_COLLECTION'] -%> | ||
puppet_collection: <%= ENV['BEAKER_PUPPET_COLLECTION'] %> | ||
<% end -%> |
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