mirror of
https://gerrit.ovirt.org/vdsm
synced 2026-02-05 12:46:23 +01:00
This patch adds the boot partition UUID to host capabilities. It will be consumed by the engine to enable FIPS mode on the host with the right kernel boot parameters set. Change-Id: Ic83ec0d03ca892f2113a43c5e79a5334b2aad200 Bug-Url: https://bugzilla.redhat.com/1692709 Signed-off-by: Liran Rotenberg <lrotenbe@redhat.com>
43 lines
1.3 KiB
Python
43 lines
1.3 KiB
Python
#
|
|
# Copyright 2019 Red Hat, Inc.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
#
|
|
# Refer to the README and COPYING files for full details of the license
|
|
#
|
|
|
|
"""
|
|
Common fixtures that can be used without importing anything.
|
|
"""
|
|
|
|
from __future__ import absolute_import
|
|
from __future__ import division
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture
|
|
def fake_executeable(tmpdir):
|
|
"""
|
|
Prepares shell script which can be used by another fixture to fake a binary
|
|
that is called in the test. Typical usage is to fake the binary output in
|
|
the script.
|
|
"""
|
|
path = tmpdir.join("fake-executable")
|
|
path.ensure()
|
|
path.chmod(0o755)
|
|
|
|
return path
|