fix: sku_customisation.service file should not be executable#84
Merged
richm merged 1 commit intolinux-system-roles:mainfrom Feb 25, 2026
Merged
fix: sku_customisation.service file should not be executable#84richm merged 1 commit intolinux-system-roles:mainfrom
richm merged 1 commit intolinux-system-roles:mainfrom
Conversation
It is a service unit file and should not be executable. systemd throws a warning about this on system startup. Fix the file permissions to get rid of the warning. Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewer's guide (collapsed on small PRs)Reviewer's GuideAdjusts the file permissions of the sku_customisation systemd unit file deployed by Ansible so it is no longer executable and avoids systemd startup warnings. Flow diagram for deploying sku_customisation systemd unit with correct permissionsflowchart TD
A[Ansible_task copy_sku_customisation_service] --> B[Copy sku_customisation.service to /etc/systemd/system/]
B --> C[Set owner root]
B --> D[Set group root]
B --> E[Set mode 0644 non_executable]
E --> F[systemd reads sku_customisation.service]
F --> G[No executable_permission_warning at startup]
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
spetrosi
approved these changes
Feb 25, 2026
richm
approved these changes
Feb 25, 2026
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.
sku_customisation.service is a service unit file and should not be executable. systemd throws a warning about this on system startup. Fix the file permissions to get rid of the warning.
Issue Tracker Tickets (Jira or BZ if any): https://issues.redhat.com/browse/RHELHPC-164
Summary by Sourcery
Bug Fixes: