Example #1
0
    def post_install(self):
        """Perform post-installation tasks."""

        # write out static config (storage, modprobe, keyboard, ??)
        #   kickstart should handle this before we get here
        from pyanaconda.modules.payloads.base.initialization import CopyDriverDisksFilesTask
        CopyDriverDisksFilesTask(conf.target.system_root).run()
Example #2
0
    def post_install_with_tasks(self):
        """Execute post installation steps.

        :returns: list of paths.
        :rtype: List
        """
        return [
            CopyDriverDisksFilesTask(conf.target.system_root)
        ]
Example #3
0
    def post_install(self):
        """Perform post-installation tasks."""

        # write out static config (storage, modprobe, keyboard, ??)
        #   kickstart should handle this before we get here
        from pyanaconda.modules.payloads.base.initialization import CopyDriverDisksFilesTask
        CopyDriverDisksFilesTask(conf.target.system_root).run()

        log.info("Installation requirements: %s", self.requirements)
        if not self.requirements.applied:
            log.info("Some of the requirements were not applied.")
Example #4
0
    def post_install_with_tasks(self):
        """Execute post installation steps.

        :returns: list of paths.
        :rtype: List
        """
        return [
            UpdateBLSConfigurationTask(conf.target.system_root,
                                       self.kernel_version_list),
            CopyDriverDisksFilesTask(conf.target.system_root)
        ]
Example #5
0
    def post_install_with_tasks(self):
        """Execute post installation steps.

        * Update bootloader BLS configuration
        * Copy Driver Disk files to the resulting system
        """
        return [
            UpdateBLSConfigurationTask(
                conf.target.system_root,
                self.kernel_version_list
            ),
            CopyDriverDisksFilesTask(conf.target.system_root)
        ]