-
Notifications
You must be signed in to change notification settings - Fork 25
fix several bugs related to saline service (bsc#1243329) (bsc#1243359) #587
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
48243b9
to
4072efd
Compare
@@ -14,6 +14,7 @@ func StartServices() error { | |||
systemd.StartService(podman.DBService), | |||
systemd.StartInstantiated(podman.ServerAttestationService), | |||
systemd.StartInstantiated(podman.HubXmlrpcService), | |||
systemd.StartInstantiated(podman.SalineService), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This one is fixed in #585
@@ -22,6 +23,7 @@ func StopServices() error { | |||
return utils.JoinErrors( | |||
systemd.StopInstantiated(podman.ServerAttestationService), | |||
systemd.StopInstantiated(podman.HubXmlrpcService), | |||
systemd.StopInstantiated(podman.SalineService), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This one too
@@ -107,7 +111,7 @@ func (s SystemdImpl) UninstallService(name string, dryRun bool) { | |||
} else { | |||
log.Info().Msgf(L("Disable %s service"), name) | |||
// disable server | |||
err := utils.RunCmd("systemctl", "disable", "--now", name) | |||
err := s.DisableService(name) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I fixed this one too 😉
|
What does this PR change?
Codespace
Check if you already have a running container clicking on
Test coverage
Links
Issue(s):
https://github.com/SUSE/spacewalk/issues/27274
https://github.com/SUSE/spacewalk/issues/27266
DONE
Changelogs
Make sure the changelogs entries you are adding are compliant with https://github.com/uyuni-project/uyuni/wiki/Contributing#changelogs and https://github.com/uyuni-project/uyuni/wiki/Contributing#uyuni-projectuyuni-repository
If you don't need a changelog check, please mark this checkbox:
If you uncheck the checkbox after the PR is created, you will need to re-run
changelog_test
(see below)Before you merge
Check How to branch and merge properly!