summaryrefslogtreecommitdiffstats
path: root/pyanaconda/packages.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2012-04-09 11:26:17 -0400
committerChris Lumens <clumens@redhat.com>2012-04-09 11:59:01 -0400
commita5bb4b2d004c1d4af864d1843b9659b6af6bfb8b (patch)
treeffba2face0a1e0818bef000e2fd6dc6b702d05d8 /pyanaconda/packages.py
parent90d0f6e5c144b461b17ef1890921221e2c608211 (diff)
downloadanaconda-a5bb4b2d004c1d4af864d1843b9659b6af6bfb8b.tar.gz
anaconda-a5bb4b2d004c1d4af864d1843b9659b6af6bfb8b.tar.xz
anaconda-a5bb4b2d004c1d4af864d1843b9659b6af6bfb8b.zip
Remove betaNagScreen.
Diffstat (limited to 'pyanaconda/packages.py')
-rw-r--r--pyanaconda/packages.py50
1 files changed, 0 insertions, 50 deletions
diff --git a/pyanaconda/packages.py b/pyanaconda/packages.py
index 53e014003..09f5a2fa1 100644
--- a/pyanaconda/packages.py
+++ b/pyanaconda/packages.py
@@ -28,7 +28,6 @@ import os
import sys
import shutil
from flags import flags
-from product import *
from constants import *
import logging
@@ -157,55 +156,6 @@ def recreateInitrd (kernelTag, instRoot):
stdout = "/dev/null", stderr = "/dev/null",
root = instRoot)
-def betaNagScreen(anaconda):
- publicBetas = { "Red Hat Linux": "Red Hat Linux Public Beta",
- "Red Hat Enterprise Linux": "Red Hat Enterprise Linux Public Beta",
- "Fedora Core": "Fedora Core",
- "Fedora": "Fedora" }
-
-
- if anaconda.dir == DISPATCH_BACK:
- return DISPATCH_DEFAULT
-
- fileagainst = None
- for (key, val) in publicBetas.items():
- if productName.startswith(key):
- fileagainst = val
- if fileagainst is None:
- fileagainst = "%s Beta" %(productName,)
-
- while 1:
- rc = anaconda.intf.messageWindow(_("Warning"),
- _("Warning! This is pre-release software!\n\n"
- "Thank you for downloading this "
- "pre-release of %(productName)s.\n\n"
- "This is not a final "
- "release and is not intended for use "
- "on production systems. The purpose of "
- "this release is to collect feedback "
- "from testers, and it is not suitable "
- "for day to day usage.\n\n"
- "To report feedback, please visit:\n\n"
- " %(bugzillaUrl)s\n\n"
- "and file a report against '%(fileagainst)s'.\n")
- % {'productName': productName,
- 'bugzillaUrl': bugzillaUrl,
- 'fileagainst': fileagainst},
- type="custom", custom_icon="warning",
- custom_buttons=[_("_Exit"), _("_Install Anyway")])
-
- if not rc:
- msg = _("Your system will now be rebooted...")
- buttons = [_("_Back"), _("_Reboot")]
- rc = anaconda.intf.messageWindow( _("Warning! This is pre-release software!"),
- msg,
- type="custom", custom_icon="warning",
- custom_buttons=buttons)
- if rc:
- sys.exit(0)
- else:
- break
-
def doReIPL(anaconda):
if not iutil.isS390() or anaconda.dir == DISPATCH_BACK:
return DISPATCH_DEFAULT