Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds config test for required kernel modules #604

Merged
merged 1 commit into from
Sep 3, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions tests/test_vms_exist.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ def _check_kernel(self, vm):
assert kernel_version.endswith("-grsec-workstation")
assert kernel_version == EXPECTED_KERNEL_VERSION

u2mfn_filepath = "/usr/lib/modules/{}/updates/dkms/u2mfn.ko".format(EXPECTED_KERNEL_VERSION)
# cmd will raise exception if file not found
stdout, stderr = vm.run("sudo test -f {}".format(u2mfn_filepath))
assert stdout == b""
assert stderr == b""

def _check_service_running(self, vm, service):
"""
Ensures a given service is running inside a given VM.
Expand Down