Exemplo n.º 1
0
 def post_install_with_tasks(self):
     """Do post installation tasks."""
     return [
         UpdateBLSConfigurationTask(conf.target.system_root,
                                    self.kernel_version_list),
         CopyDriverDisksFilesTask(conf.target.system_root)
     ]
Exemplo n.º 2
0
    def post_install(self):
        """Perform post-installation tasks."""

        # write out static config (storage, modprobe, keyboard, ??)
        #   kickstart should handle this before we get here
        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.")
Exemplo n.º 3
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)
        ]
Exemplo n.º 4
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)
        ]