diff options
author | Christian Breunig <christian@breunig.cc> | 2023-06-12 21:13:55 +0200 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2023-06-21 23:17:27 +0200 |
commit | 7fa7aa4d4b2d4736037ec912111b4f3048dfa217 (patch) | |
tree | aa96c5d7883c14fa9453ea08cad75303a3a71470 /smoketest/scripts/cli/test_system_login.py | |
parent | 2128dc0ddf6b921f440067d7b862f30d9fad0cb2 (diff) | |
download | vyos-1x-7fa7aa4d4b2d4736037ec912111b4f3048dfa217.tar.gz vyos-1x-7fa7aa4d4b2d4736037ec912111b4f3048dfa217.zip |
smoketest: move SSH login functionality to base class
Diffstat (limited to 'smoketest/scripts/cli/test_system_login.py')
-rwxr-xr-x | smoketest/scripts/cli/test_system_login.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/smoketest/scripts/cli/test_system_login.py b/smoketest/scripts/cli/test_system_login.py index a1d2ba2ad..1182cb1fc 100755 --- a/smoketest/scripts/cli/test_system_login.py +++ b/smoketest/scripts/cli/test_system_login.py @@ -20,8 +20,6 @@ import unittest from base_vyostest_shim import VyOSUnitTestSHIM -from distutils.version import LooseVersion -from platform import release as kernel_version from subprocess import Popen, PIPE from pwd import getpwall @@ -149,9 +147,6 @@ class TestSystemLogin(VyOSUnitTestSHIM.TestCase): # T2886 - RADIUS authentication - check for statically compiled options options = ['CONFIG_AUDIT', 'CONFIG_AUDITSYSCALL', 'CONFIG_AUDIT_ARCH'] - if LooseVersion(kernel_version()) < LooseVersion('5.0'): - options.append('CONFIG_AUDIT_WATCH') - options.append('CONFIG_AUDIT_TREE') for option in options: self.assertIn(f'{option}=y', kernel_config) |