summaryrefslogtreecommitdiffstats
path: root/scripts/makestamp.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2008-02-13 18:33:17 -0500
committerJeremy Katz <katzj@redhat.com>2008-02-17 19:51:24 -0500
commit02f7fb7c55bdaf5b221f2b18be109bcd986c6277 (patch)
tree1eccd49a42d7fffcfbe02d4e54f26b00cbb09cf3 /scripts/makestamp.py
parente4fc7da55ccbd01659784a80be0511229a95e465 (diff)
downloadanaconda-02f7fb7c55bdaf5b221f2b18be109bcd986c6277.tar.gz
anaconda-02f7fb7c55bdaf5b221f2b18be109bcd986c6277.tar.xz
anaconda-02f7fb7c55bdaf5b221f2b18be109bcd986c6277.zip
Remove some legacy stuff that's no longer relevant from .discinfo/.treeinfo
Diffstat (limited to 'scripts/makestamp.py')
-rwxr-xr-xscripts/makestamp.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/scripts/makestamp.py b/scripts/makestamp.py
index 9d919d026..c3f416c02 100755
--- a/scripts/makestamp.py
+++ b/scripts/makestamp.py
@@ -34,9 +34,6 @@ data = {"timestamp": None,
"releasestr": None,
"arch": None,
"discNum": None,
- "baseDir": None,
- "packagesDir": None,
- "pixmapsDir": None,
"outfile": None}
allDiscs = None
@@ -77,19 +74,6 @@ if data["discNum"] is None and allDiscs is None:
print >> sys.stderr, "No disc number specified; assuming disc 1"
data["discNum"] = "1"
-if data["baseDir"] is None:
- print "Where is the comps file located?"
- data["baseDir"] = sys.stdin.readline()[:-1]
-
-if data["packagesDir"] is None:
- print "Where are the packages located?"
- data["packagesDir"] = sys.stdin.readline()[:-1]
-
-if data["pixmapsDir"] is None:
- print "Where are the images located?"
- data["pixmapsDir"] = sys.stdin.readline()[:-1]
-
-
if data["outfile"] is None:
f = sys.stdout
else:
@@ -102,8 +86,5 @@ if allDiscs is None:
f.write("%s\n" % data["discNum"])
else:
f.write("0\n")
-f.write("%s\n" % data["baseDir"])
-f.write("%s\n" % data["packagesDir"])
-f.write("%s\n" % data["pixmapsDir"])