summaryrefslogtreecommitdiffstats
path: root/product.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2005-03-29 18:53:09 +0000
committerJeremy Katz <katzj@redhat.com>2005-03-29 18:53:09 +0000
commitc5c389047f0895675c11746b7b8316826f99e4b8 (patch)
treecc677be44e9d17ab88e1b9a3565970e528da17b6 /product.py
parentc311ba73990340f9036267d41b72c85c77624186 (diff)
downloadanaconda-c5c389047f0895675c11746b7b8316826f99e4b8.tar.gz
anaconda-c5c389047f0895675c11746b7b8316826f99e4b8.tar.xz
anaconda-c5c389047f0895675c11746b7b8316826f99e4b8.zip
2005-03-29 Jeremy Katz <katzj@redhat.com>
* product.py (bugUrl): Clean up .buildstamp reading, read in bug url * constants.py (bugzillaUrl): Make bug url a per-product characteristic. * scripts/buildinstall: Allow passing in bug url on the command line. * scripts/mk-images: Likewise, and use it to populate .buildstamp.
Diffstat (limited to 'product.py')
-rw-r--r--product.py23
1 files changed, 13 insertions, 10 deletions
diff --git a/product.py b/product.py
index 0a00aba1c..f82c01ca3 100644
--- a/product.py
+++ b/product.py
@@ -19,20 +19,23 @@ elif os.access("/.buildstamp", os.R_OK):
else:
path = None
-if path is None:
- productName = "anaconda"
- productVersion = "bluesky"
- productPath = "Fedora"
-else:
+
+productName = "anaconda"
+productVersion = "bluesky"
+productPath = "anaconda"
+bugUrl = "your distribution provider's bug reporting tool."
+
+if path is not None:
f = open(path, "r")
lines = f.readlines()
- if len(lines) < 4:
- productName = "anaconda"
- productVersion = "bluesky"
- productPath = "Fedora"
- else:
+ if len(lines) >= 3:
productName = lines[1][:-1]
productVersion = lines[2][:-1]
+ if len(lines) >= 4:
productPath = lines[3][:-1]
+ if len(lines) >= 5:
+ bugUrl = lines[4][:-1]
+
+