diff options
author | Alice Ferrazzi <alicef@gentoo.org> | 2017-07-18 14:52:39 +0900 |
---|---|---|
committer | Alice Ferrazzi <alicef@gentoo.org> | 2017-07-18 14:52:39 +0900 |
commit | 3b00194670c3d516bf20ef12c14c85771f949417 (patch) | |
tree | 17a3643063ee21bf1139efc9adc821670c4bf96f | |
parent | refactored ungz and send_files function (diff) | |
download | elivepatch-3b00194670c3d516bf20ef12c14c85771f949417.tar.gz elivepatch-3b00194670c3d516bf20ef12c14c85771f949417.tar.bz2 elivepatch-3b00194670c3d516bf20ef12c14c85771f949417.zip |
added docstrings
-rw-r--r-- | elivepatch_client/client/checkers.py | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/elivepatch_client/client/checkers.py b/elivepatch_client/client/checkers.py index f5fad5b..f4dbb9c 100644 --- a/elivepatch_client/client/checkers.py +++ b/elivepatch_client/client/checkers.py @@ -22,9 +22,8 @@ def id_generate_uuid(): class Kernel(object): """ - Class for manage the kernels files + Manage kernels files """ - def __init__(self, restserver_url, session_uuid=None): self.config_fullpath = '' self.patch_fullpath = '' @@ -77,7 +76,9 @@ class Kernel(object): class CVE(object): - + """ + Check the kernel against a CVE repository + """ def __init__(self): self.git_url = "https://github.com/nluedtke/linux_kernel_cves" self.repo_dir = "/tmp/kernel_cve/" @@ -92,13 +93,19 @@ class CVE(object): class FileAction(object): - + """ + Work with files + """ def __init__(self, path, filename): self.path = path self.filename = filename pass def ungz(self): + """ + Uncompress gzipped configuration + :return: Uncompressed configuration file path + """ path_to_store = None path_gz_file = os.path.join(self.path, self.filename) temporary_path_uncompressed_file = os.path.join('/tmp', self.filename) @@ -116,6 +123,11 @@ class FileAction(object): return path, uncompressed_file def config_kernel_version(self, uncompressed_config_file): + """ + Find the kernel version from where the configuration as been generated + :param uncompressed_config_file: + :return: kernel version + """ with open(uncompressed_config_file) as f: i = 0 while i < 2: |