Skip to content

Commit

Permalink
Add dependency for non redhat pkgs listing
Browse files Browse the repository at this point in the history
Without this dependency, the action can run before the package
conversion in the system. Ideally, we want this to run after the
`KERNEL_PACKAGES_INSTALLATION`, as it is no use to have this run before the
package replacement.

Pointed out by @hosekadam in #1256 (comment)
  • Loading branch information
r0x0d authored and Venefilyn committed Aug 16, 2024
1 parent 7c12aa8 commit e07bc6b
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

class ListNonRedHatPkgsLeft(actions.Action):
id = "LIST_NON_RED_HAT_PKGS_LEFT"
dependencies = ("KERNEL_PACKAGES_INSTALLATION",)

def run(self):
"""List all the packages that have not been replaced by the
Expand Down

0 comments on commit e07bc6b

Please sign in to comment.