def set_kickstart(self, kickstart):
        """
        Set the kickstart path, this must be a local file.

        @param: str kickstart path to a local kickstart file
        @returns: True or CX
        """
        self.kickstart = validate.kickstart_file_path(kickstart)
Exemple #2
0
    def set_kickstart(self, kickstart):
        """
        Set the kickstart path, this must be a local file.

        @param: str kickstart path to a local kickstart file
        @returns: True or CX
        """
        self.kickstart = validate.kickstart_file_path(kickstart)
Exemple #3
0
    def set_kickstart(self, kickstart):
        """
        Set the kickstart path, this must be a local file.

        It may not make sense for images to have kickstarts.  It really doesn't.
        However if the image type is 'iso' koan can create a virtual floppy
        and shove an answer file on it, to script an installation.  This may
        not be a kickstart per se, it might be a Windows answer file (SIF) etc.

        @param: str kickstart path to a local kickstart file
        @returns: True or CX
        """
        self.kickstart = validate.kickstart_file_path(kickstart)