summaryrefslogtreecommitdiffstats
path: root/anaconda
diff options
context:
space:
mode:
authorPaul Nasrat <pnasrat@redhat.com>2005-08-19 19:50:18 +0000
committerPaul Nasrat <pnasrat@redhat.com>2005-08-19 19:50:18 +0000
commit3b397466b742756b354cea9a87a4093bad410334 (patch)
treee779ea190c50a3810ac5c7ace925bdf804cb0f0b /anaconda
parent34737651369521e81d9c307f3bbad84c0b82f4e5 (diff)
downloadanaconda-3b397466b742756b354cea9a87a4093bad410334.tar.gz
anaconda-3b397466b742756b354cea9a87a4093bad410334.tar.xz
anaconda-3b397466b742756b354cea9a87a4093bad410334.zip
warn for nfs installs
Diffstat (limited to 'anaconda')
-rwxr-xr-xanaconda19
1 files changed, 13 insertions, 6 deletions
diff --git a/anaconda b/anaconda
index 9707d6b1b..95ef6d998 100755
--- a/anaconda
+++ b/anaconda
@@ -1074,12 +1074,19 @@ if 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)
+ 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)
+else:
+ intf.messageWindow(_("Install Method Under Construction")
+ _("Anaconda is undergoing major backend work "
+ "currently only nfs tree installs are supported "
+ "and package selection is turned off. "
+ "We are aware of this and and normal service, "
+ "will be resumed ASAP."))
floppyDevice = floppy.probeFloppyDevice()