Skip to content

Commit

Permalink
Move actor which removes "leapp-resume" service into After phase
Browse files Browse the repository at this point in the history
In order to avoid killing (by removal) the "leapp-resume" service
and at the same time trying to reload systemd daemon by other
services, we move the actor which removes "leapp-resume" service
into FirstBootPhase.After phase.

https://bugzilla.redhat.com/show_bug.cgi?id=1883218
  • Loading branch information
Rezney authored and pirat89 committed Oct 25, 2020
1 parent eb00114 commit f58643f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class RemoveSystemdResumeService(Actor):
name = 'remove_systemd_resume_service'
consumes = ()
produces = (Report,)
tags = (FirstBootPhaseTag, IPUWorkflowTag)
tags = (FirstBootPhaseTag.After, IPUWorkflowTag)

def process(self):
service_name = 'leapp_resume.service'
Expand Down

0 comments on commit f58643f

Please sign in to comment.