Skip to content

Commit

Permalink
Merge pull request #925 from bastelfreak/version
Browse files Browse the repository at this point in the history
Gemfile: Allow Puppet 7 and 8
  • Loading branch information
bastelfreak authored Sep 13, 2024
2 parents 7211fbf + 4a946e6 commit 9e31190
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config_defaults.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
Jenkinsfile:
delete: true
Gemfile:
puppet_version: '~> 7.24'
puppet_version: ['>= 7.24', '< 9']
required:
':test':
- gem: voxpupuli-test
Expand Down
2 changes: 1 addition & 1 deletion moduleroot/Gemfile.erb
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ end
gem 'rake', :require => false
gem 'facter', ENV['FACTER_GEM_VERSION'], :require => false, :groups => [:test]

puppetversion = ENV['PUPPET_GEM_VERSION'] || '<%= @configs['puppet_version'] %>'
puppetversion = ENV['PUPPET_GEM_VERSION'] || <%= @configs['puppet_version'].inspect %>
gem 'puppet', puppetversion, :require => false, :groups => [:test]

# vim: syntax=ruby

0 comments on commit 9e31190

Please sign in to comment.