diff --git a/src/modules/postcfg/main.py b/src/modules/postcfg/main.py index 81c7f53c7..f8ce1cad3 100644 --- a/src/modules/postcfg/main.py +++ b/src/modules/postcfg/main.py @@ -26,6 +26,7 @@ from distutils.dir_util import copy_tree from os.path import join, exists from libcalamares.utils import target_env_call + class ConfigController: def __init__(self): self.__root = libcalamares.globalstorage.value("rootMountPoint") @@ -77,8 +78,10 @@ class ConfigController: # Copy skel to root self.copy_folder('etc/skel', 'root') - # Workaround for pacman-key bug FS#45351 https://bugs.archlinux.org/task/45351 - # We have to kill gpg-agent because if it stays around we can't reliably unmount + # Workaround for pacman-key bug + # FS#45351 https://bugs.archlinux.org/task/45351 + # We have to kill gpg-agent because if it stays + # around we can't reliably unmount # the target partition. self.terminate('gpg-agent') @@ -88,6 +91,7 @@ class ConfigController: return None + def run(): """ Misc postinstall configurations """