fix: select systemd as default service provider on Raspbian 13#9578
Open
raman1236 wants to merge 1 commit intopuppetlabs:mainfrom
Open
fix: select systemd as default service provider on Raspbian 13#9578raman1236 wants to merge 1 commit intopuppetlabs:mainfrom
raman1236 wants to merge 1 commit intopuppetlabs:mainfrom
Conversation
Add Raspbian 13 (trixie) to the list of versions that default to the systemd service provider. Without this, puppet selects init as the service provider on 32-bit Raspberry Pi OS 13, which causes service resources to fail. This is the same fix that was applied for Raspbian 12 in puppetlabs#9169. Fixes puppetlabs#9565
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Add Raspbian 13 (trixie) to the list of versions that default to the systemd service provider.
Problem
On 32-bit Raspberry Pi OS 13 (trixie), which is branded as Raspbian, puppet selects
initinstead ofsystemdas the default service provider. This causes the warning:and service resources fail.
Fix
Add
'13'to thedefaultforarray for Raspbian in the systemd service provider, matching the same pattern established for Raspbian 12 in the fix for #9169.Test
Added a spec test for Raspbian 13 matching the existing Raspbian 12 test.
Fixes #9565