Skip to content

Commit

Permalink
Revert "packaging: move selinux from ovirt-engine-common to ovirt-eng…
Browse files Browse the repository at this point in the history
…ine-setup"

This reverts commit e8eee20.

Moving it causes grafana on a separate machine to fail, because the
plugin to enable httpd_can_network_connect is now only on the engine
machine. Reverting that patch should fix that.

This does not introduce a new regression, because the need for it was a
mere optimization, but is now not needed anymore, as we removed
use/integration of ansible-runner-service.

Change-Id: I35f57983c03c2de78b16ad63d37f399db103a07b
Bug-Url: https://bugzilla.redhat.com/2126778
Signed-off-by: Yedidyah Bar David <didi@redhat.com>
  • Loading branch information
didib committed Dec 1, 2022
1 parent 5f169dc commit 0b75478
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,12 +14,14 @@

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 @@ -14,14 +14,12 @@

from . import engine
from . import memcheck
from . import selinux


@util.export
def createPlugins(context):
engine.Plugin(context=context)
memcheck.Plugin(context=context)
selinux.Plugin(context=context)


# vim: expandtab tabstop=4 shiftwidth=4

0 comments on commit 0b75478

Please sign in to comment.