Skip to content

Commit

Permalink
Merge pull request #604 from freedomofpress/184-test-for-required-ker…
Browse files Browse the repository at this point in the history
…nel-modules

Adds config test for required kernel modules
  • Loading branch information
emkll authored Sep 3, 2020
2 parents 672e30a + 67f71cb commit 196ec22
Showing 1 changed file with 6 additions and 0 deletions.
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

0 comments on commit 196ec22

Please sign in to comment.