Skip to content

Commit

Permalink
Bump spec attrs and update CHANGELOG (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
trevor-vaughan authored Jul 30, 2022
1 parent 9ad1909 commit c9f4cfb
Show file tree
Hide file tree
Showing 7 changed files with 56 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
* Sat Jul 30 2022 Joshua Hoblitt <[email protected]> - 0.2.2
- Add support for Alma and Rocky Linux

* Sun Feb 13 2022 Trevor Vaughan <[email protected]> - 0.2.1
- Add support for Amazon Linux 2

Expand Down
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "simp-dconf",
"version": "0.2.1",
"version": "0.2.2",
"author": "SIMP Team",
"summary": "Provides an interface to system DConf configuration",
"license": "Apache-2.0",
Expand Down
23 changes: 23 additions & 0 deletions spec/acceptance/nodesets/almalinux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<%
if ENV['BEAKER_HYPERVISOR']
hypervisor = ENV['BEAKER_HYPERVISOR']
else
hypervisor = 'vagrant'
end
-%>
HOSTS:
alma8:
roles:
- default
platform: el-8-x86_64
box: almalinux/8
hypervisor: <%= hypervisor %>

CONFIG:
log_level: verbose
type: aio
multi_node: false
vagrant_cpus: 2
<% if ENV['BEAKER_PUPPET_COLLECTION'] -%>
puppet_collection: <%= ENV['BEAKER_PUPPET_COLLECTION'] %>
<% end -%>
2 changes: 1 addition & 1 deletion spec/acceptance/nodesets/amzn2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ CONFIG:
log_level: verbose
synced_folder : disabled
type: aio
vagrant_memsize: 512
vagrant_cpus: 2
<% if ENV['BEAKER_PUPPET_COLLECTION'] -%>
puppet_collection: <%= ENV['BEAKER_PUPPET_COLLECTION'] %>
<% end -%>
3 changes: 2 additions & 1 deletion spec/acceptance/nodesets/centos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@ HOSTS:

CONFIG:
log_level: verbose
vagrant_cpus: 2
type: aio
vagrant_memsize: 256
multi_node: false
<% if ENV['BEAKER_PUPPET_COLLECTION'] -%>
puppet_collection: <%= ENV['BEAKER_PUPPET_COLLECTION'] %>
<% end -%>
3 changes: 2 additions & 1 deletion spec/acceptance/nodesets/oel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ HOSTS:
CONFIG:
log_level: verbose
type: aio
vagrant_memsize: 256
vagrant_cpus: 2
multi_node: false
<% if ENV['BEAKER_PUPPET_COLLECTION'] -%>
puppet_collection: <%= ENV['BEAKER_PUPPET_COLLECTION'] %>
<% end -%>
24 changes: 24 additions & 0 deletions spec/acceptance/nodesets/rocky.yml
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:
rocky8:
roles:
- default
platform: el-8-x86_64
box: rockylinux/8
hypervisor: <%= hypervisor %>

CONFIG:
log_level: verbose
type: aio
multi_node: false
synced_folder: disabled
vagrant_cpus: 2
<% if ENV['BEAKER_PUPPET_COLLECTION'] -%>
puppet_collection: <%= ENV['BEAKER_PUPPET_COLLECTION'] %>
<% end -%>

0 comments on commit c9f4cfb

Please sign in to comment.