Skip to content

Commit

Permalink
Remove pidfile_workaround and instead use unsupported_puppetserver
Browse files Browse the repository at this point in the history
This at least tests the agent on EL8.
  • Loading branch information
ekohl committed Mar 23, 2024
1 parent fc17282 commit 3a8f34b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,5 @@ jobs:
name: Puppet
uses: voxpupuli/gha-puppet/.github/workflows/beaker.yml@v2
with:
pidfile_workaround: 'true'
rubocop: false
cache-version: '1'
2 changes: 0 additions & 2 deletions .sync.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
---
.github/workflows/ci.yml:
pidfile_workaround: true
Gemfile:
extra:
- gem: hocon
3 changes: 2 additions & 1 deletion spec/support/acceptance/puppetserver.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ def unsupported_puppetserver
when 'Debian'
os['name'] == 'Debian' && os['release']['major'] == '12'
when 'RedHat'
os['name'] == 'Fedora'
# puppetserver uses PIDFile, which breaks on Docker
os['name'] == 'Fedora' || (default[:hypervisor] == 'docker' && os['release']['major'] == '8')
end
end

Expand Down

0 comments on commit 3a8f34b

Please sign in to comment.