Skip to content

Commit

Permalink
packaging: move selinux from ovirt-engine-common to ovirt-engine-setup
Browse files Browse the repository at this point in the history
Bug-Url: https://bugzilla.redhat.com/1903052
Change-Id: I46ca2965e8872904e9b7b321e930987c567b712c
Signed-off-by: Martin Necas <mnecas@redhat.com>
  • Loading branch information
mnecas authored and tnisan committed Feb 4, 2021
1 parent 1580498 commit e8eee20
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,12 @@

from . import hostile_services
from . import mem
from . import selinux


@util.export
def createPlugins(context):
hostile_services.Plugin(context=context)
mem.Plugin(context=context)
selinux.Plugin(context=context)


# vim: expandtab tabstop=4 shiftwidth=4
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
from . import image_upload
from . import memcheck
from . import nfs
from . import selinux


@util.export
Expand All @@ -26,6 +27,7 @@ def createPlugins(context):
nfs.Plugin(context=context)
exportfs.Plugin(context=context)
image_upload.Plugin(context=context)
selinux.Plugin(context=context)


# vim: expandtab tabstop=4 shiftwidth=4

0 comments on commit e8eee20

Please sign in to comment.