diff options
author | Paul Nasrat <pnasrat@redhat.com> | 2005-08-19 19:43:39 +0000 |
---|---|---|
committer | Paul Nasrat <pnasrat@redhat.com> | 2005-08-19 19:43:39 +0000 |
commit | 34737651369521e81d9c307f3bbad84c0b82f4e5 (patch) | |
tree | 95082c7e3055d77dc6d6eaa5f1b4f667faa552b7 /anaconda | |
parent | 231a239587b541492e90879ceb12c8f777e63f9f (diff) | |
download | anaconda-34737651369521e81d9c307f3bbad84c0b82f4e5.tar.gz anaconda-34737651369521e81d9c307f3bbad84c0b82f4e5.tar.xz anaconda-34737651369521e81d9c307f3bbad84c0b82f4e5.zip |
break all but nfs installs
Diffstat (limited to 'anaconda')
-rwxr-xr-x | anaconda | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -1073,6 +1073,14 @@ if method: log.critical (_("unknown install method: %s"), method) sys.exit(1) +if not method.startswith('nfs:/'): + intf.messageWindow(_("Install Method Unavailable"), + _("Anaconda is undergoing major backend work " + "currently only nfs tree installs are supported. " + "We apologise for any inconvenience. " + "Normal service will be resumed ASAP.") + sys.exit(42) + floppyDevice = floppy.probeFloppyDevice() # create device nodes for detected devices if we're not running in test mode |