We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc17282 commit 3a8f34bCopy full SHA for 3a8f34b
.github/workflows/ci.yml
@@ -14,6 +14,5 @@ jobs:
14
name: Puppet
15
uses: voxpupuli/gha-puppet/.github/workflows/beaker.yml@v2
16
with:
17
- pidfile_workaround: 'true'
18
rubocop: false
19
cache-version: '1'
.sync.yml
@@ -1,6 +1,4 @@
1
---
2
-.github/workflows/ci.yml:
3
- pidfile_workaround: true
4
Gemfile:
5
extra:
6
- gem: hocon
spec/support/acceptance/puppetserver.rb
@@ -6,7 +6,8 @@ def unsupported_puppetserver
when 'Debian'
7
os['name'] == 'Debian' && os['release']['major'] == '12'
8
when 'RedHat'
9
- os['name'] == 'Fedora'
+ # puppetserver uses PIDFile, which breaks on Docker
10
+ os['name'] == 'Fedora' || (default[:hypervisor] == 'docker' && os['release']['major'] == '8')
11
end
12
13
0 commit comments