diff options
author | Paul Nasrat <pnasrat@redhat.com> | 2005-08-19 19:50:18 +0000 |
---|---|---|
committer | Paul Nasrat <pnasrat@redhat.com> | 2005-08-19 19:50:18 +0000 |
commit | 3b397466b742756b354cea9a87a4093bad410334 (patch) | |
tree | e779ea190c50a3810ac5c7ace925bdf804cb0f0b /anaconda | |
parent | 34737651369521e81d9c307f3bbad84c0b82f4e5 (diff) | |
download | anaconda-3b397466b742756b354cea9a87a4093bad410334.tar.gz anaconda-3b397466b742756b354cea9a87a4093bad410334.tar.xz anaconda-3b397466b742756b354cea9a87a4093bad410334.zip |
warn for nfs installs
Diffstat (limited to 'anaconda')
-rwxr-xr-x | anaconda | 19 |
1 files changed, 13 insertions, 6 deletions
@@ -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() |