Skip to content

Commit 5ed54d7

Browse files
authored
Merge pull request #490 from voxpupuli/modulesync
modulesync 10.6.0
2 parents 357fdbc + 7b00c35 commit 5ed54d7

21 files changed

Lines changed: 387 additions & 608 deletions

.devcontainer/devcontainer.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"name": "VoxBox",
3+
"image": "ghcr.io/voxpupuli/voxbox:latest"
4+
}

.github/CONTRIBUTING.md

Lines changed: 0 additions & 272 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ permissions:
2222
jobs:
2323
puppet:
2424
name: Puppet
25-
uses: voxpupuli/gha-puppet/.github/workflows/beaker.yml@v3
25+
uses: voxpupuli/gha-puppet/.github/workflows/beaker.yml@v4
2626
with:
2727
beaker_hosts: 'vpnserver:ma;vpnclienta:a'
28+
beaker_hypervisor: 'docker'

.msync.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# Managed by modulesync - DO NOT EDIT
33
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/
44

5-
modulesync_config_version: '10.1.0'
5+
modulesync_config_version: '10.6.0'

.rubocop.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
---
2+
inherit_from: .rubocop_todo.yml
3+
24
# Managed by modulesync - DO NOT EDIT
35
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/
46

.rubocop_todo.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# This configuration was generated by
2+
# `rubocop --auto-gen-config --no-auto-gen-timestamp`
3+
# using RuboCop version 1.85.1.
4+
# The point is for the user to remove these configuration records
5+
# one by one as the offenses are removed from the code base.
6+
# Note that changes in the inspected code, or installation of new
7+
# versions of RuboCop, may require this file to be generated again.
8+
9+
# Offense count: 7
10+
RSpec/LeakyLocalVariable:
11+
Exclude:
12+
- 'spec/classes/openvpn_install_spec.rb'
13+
- 'spec/defines/openvpn_ca_spec.rb'
14+
- 'spec/defines/openvpn_client_spec.rb'
15+
- 'spec/defines/openvpn_client_specific_config_spec.rb'
16+
- 'spec/defines/openvpn_revoke_spec.rb'
17+
- 'spec/defines/openvpn_server_spec.rb'

.sync.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ spec/spec_helper_acceptance.rb:
44
.github/workflows/ci.yml:
55
with:
66
beaker_hosts: 'vpnserver:ma;vpnclienta:a'
7+
beaker_hypervisor: 'docker'

Gemfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
source ENV['GEM_SOURCE'] || 'https://rubygems.org'
55

66
group :test do
7-
gem 'voxpupuli-test', '~> 11.0', :require => false
8-
gem 'puppet_metadata', '~> 5.0', :require => false
7+
gem 'voxpupuli-test', '~> 14.0', :require => false
8+
gem 'puppet_metadata', '~> 6.0', :require => false
99
end
1010

1111
group :development do
@@ -18,7 +18,7 @@ group :system_tests do
1818
end
1919

2020
group :release do
21-
gem 'voxpupuli-release', '~> 4.0', :require => false
21+
gem 'voxpupuli-release', '~> 5.3', :require => false
2222
end
2323

2424
gem 'rake', :require => false

0 commit comments

Comments
 (0)