diff options
author | Alice Ferrazzi <alicef@gentoo.org> | 2017-08-14 19:13:11 +0900 |
---|---|---|
committer | Alice Ferrazzi <alicef@gentoo.org> | 2017-08-14 19:13:11 +0900 |
commit | ab5c88afd3a09bb218e7da7b6bedac73d08571fc (patch) | |
tree | f3fef762509d6413f6be28aef8fd05a9ac979182 | |
parent | remove deprecated function (diff) | |
download | elivepatch-ab5c88afd3a09bb218e7da7b6bedac73d08571fc.tar.gz elivepatch-ab5c88afd3a09bb218e7da7b6bedac73d08571fc.tar.bz2 elivepatch-ab5c88afd3a09bb218e7da7b6bedac73d08571fc.zip |
patch.py:
refactored variable name
added docstring
-rw-r--r-- | elivepatch_client/client/patch.py | 27 |
1 files changed, 21 insertions, 6 deletions
diff --git a/elivepatch_client/client/patch.py b/elivepatch_client/client/patch.py index b059540..4cd3c9b 100644 --- a/elivepatch_client/client/patch.py +++ b/elivepatch_client/client/patch.py @@ -12,6 +12,11 @@ class ManaGer(object): os.mkdir(self.tmp_patch_folder) def list(self, kernel_version): + """ + Listing incremental patches + :param kernel_version: String with kernel version + :return: list of incremental patch + """ kernel_sources = 'gentoo-sources' patch_filename = [] # search previous livepatch patch folder @@ -47,22 +52,32 @@ class ManaGer(object): return patch_filename def load(self, patch_fulldir, livepatch_fulldir): + """ + kpatch load live patch into the client machine working kernel + :param patch_fulldir: String patch full directory + :param livepatch_fulldir: String live patch full directory + """ try: _command(['sudo', 'kpatch', 'load', livepatch_fulldir]) print('patch_fulldir:' + str(patch_fulldir) + ' livepatch_fulldir: '+ str(livepatch_fulldir)) - self.save(patch_fulldir, livepatch_fulldir) + self._save(patch_fulldir, livepatch_fulldir) except: print('failed to load the livepatch') - def save(self, patch, livepatch): + def _save(self, patch_fulldir, livepatch_fulldir): + """ + Save main patch and live patch + :param patch_fulldir: String patch full directory + :param livepatch_fulldir: String live patch full directory + """ i = 0 while os.path.exists(os.path.join(self.tmp_patch_folder, "elivepatch_%s" % i)): i += 1 - path_folder = os.path.join(self.tmp_patch_folder, "elivepatch_%s" % i) - os.mkdir(path_folder) - shutil.copy(patch, os.path.join(path_folder, "elivepatch.patch")) + incremental_patch_archive_directory = os.path.join(self.tmp_patch_folder, "elivepatch_%s" % i) + os.mkdir(incremental_patch_archive_directory) + shutil.copy(patch_fulldir, os.path.join(incremental_patch_archive_directory, "elivepatch.patch")) try: - shutil.copy(livepatch, os.path.join(path_folder, "elivepatch.ko")) + shutil.copy(livepatch_fulldir, os.path.join(incremental_patch_archive_directory, "elivepatch.ko")) except: pass |