Skip to content
This repository was archived by the owner on May 5, 2023. It is now read-only.

Commit 36141df

Browse files
committed
modulesync 2.11.0
1 parent e3d9432 commit 36141df

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

.github/CONTRIBUTING.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -256,18 +256,20 @@ Beaker also supports docker containers. We also use that in our automated CI
256256
pipeline at [travis-ci](http://travis-ci.org). To use that instead of Vagrant:
257257

258258
```sh
259-
PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet5 BEAKER_debug=true BEAKER_setfile=debian9-64{hypervisor=docker} BEAKER_destroy=yes bundle exec rake beaker
259+
PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet6 BEAKER_debug=true BEAKER_setfile=debian10-64{hypervisor=docker} BEAKER_destroy=yes bundle exec rake beaker
260260
```
261261

262-
You can replace the string `debian9` with any common operating system.
262+
You can replace the string `debian10` with any common operating system.
263263
The following strings are known to work:
264264

265265
* ubuntu1604
266266
* ubuntu1804
267267
* debian8
268268
* debian9
269+
* debian10
269270
* centos6
270271
* centos7
272+
* centos8
271273

272274
The easiest way to debug in a docker container is to open a shell:
273275

.msync.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
modulesync_config_version: '2.10.1'
1+
modulesync_config_version: '2.11.0'

.rubocop.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
require: rubocop-rspec
22
AllCops:
3-
TargetRubyVersion: 2.1
3+
# Puppet Server 5 defaults to jruby 1.7 so TargetRubyVersion must stay at 1.9 until we drop support for puppet 5
4+
TargetRubyVersion: 1.9
45
Include:
56
- ./**/*.rb
67
Exclude:

Gemfile

+1
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ group :system_tests do
6262
gem 'rbnacl', '>= 4', :require => false
6363
gem 'rbnacl-libsodium', :require => false
6464
gem 'bcrypt_pbkdf', :require => false
65+
gem 'ed25519', :require => false
6566
end
6667

6768
group :release do

0 commit comments

Comments
 (0)