#
# image.py - Install method for disk image installs (CD & NFS)
#
# Copyright 1999-2007 Red Hat, Inc.
#
# This software may be freely redistributed under the terms of the GNU
# library public license.
#
# You should have received a copy of the GNU Library Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
from installmethod import InstallMethod
import shutil
import os
import sys
import isys
import time
import stat
|