summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarel Klic <kklic@redhat.com>2010-01-19 15:32:42 +0100
committerKarel Klic <kklic@redhat.com>2010-01-19 15:32:42 +0100
commitb7e20eb84250ce9feeefde8dad2eab448125dc5d (patch)
treea689d4f7701ece49a7d492b6258eff862439538c
parent8ddcb9404d65bc6b09910099988fe6a0f33fe250 (diff)
downloadabrt-b7e20eb84250ce9feeefde8dad2eab448125dc5d.tar.gz
abrt-b7e20eb84250ce9feeefde8dad2eab448125dc5d.tar.xz
abrt-b7e20eb84250ce9feeefde8dad2eab448125dc5d.zip
Add warning text about script usage to abrt-bz-* scripts. Document the purpose of the scripts.
-rwxr-xr-xscripts/abrt-bz-stats4
-rwxr-xr-xsrc/Backtrace/abrt-bz-downloader5
-rwxr-xr-xsrc/Backtrace/abrt-bz-dupchecker10
3 files changed, 19 insertions, 0 deletions
diff --git a/scripts/abrt-bz-stats b/scripts/abrt-bz-stats
index 29236650..3fb02bca 100755
--- a/scripts/abrt-bz-stats
+++ b/scripts/abrt-bz-stats
@@ -1,5 +1,9 @@
#!/usr/bin/python
# -*- mode:python -*-
+# ABRT Bugzilla Statistics script
+#
+# Please do not run this script unless it's neccessary to do so.
+# It forces Bugzilla to send info about thousands of bug reports.
from bugzilla import RHBugzilla
from optparse import OptionParser
diff --git a/src/Backtrace/abrt-bz-downloader b/src/Backtrace/abrt-bz-downloader
index 81084e72..7f294257 100755
--- a/src/Backtrace/abrt-bz-downloader
+++ b/src/Backtrace/abrt-bz-downloader
@@ -1,5 +1,10 @@
#!/usr/bin/python
# -*- mode:python -*-
+# ABRT Bugzilla Backtrace Downloader
+# Downloads all backtraces reported by ABRT from Bugzilla.
+#
+# Please do not run this script unless it's neccessary to do so.
+# It forces Bugzilla to send data related to thousands of bug reports.
from bugzilla import RHBugzilla
from optparse import OptionParser
diff --git a/src/Backtrace/abrt-bz-dupchecker b/src/Backtrace/abrt-bz-dupchecker
index f9caeed8..01cafa01 100755
--- a/src/Backtrace/abrt-bz-dupchecker
+++ b/src/Backtrace/abrt-bz-dupchecker
@@ -1,5 +1,15 @@
#!/usr/bin/python
# -*- mode:python -*-
+# ABRT Bugzilla Duplication Checker
+# Downloads all backtraces reported by ABRT from Bugzilla,
+# and search for duplicates using the newest ABRT duplication
+# checker.
+#
+# Some bugs in Bugzilla were reported by older ABRT
+# versions, which had poor duplication detection.
+#
+# Please do not run this script unless it's neccessary to do so.
+# It forces Bugzilla to send data related to thousands of bug reports.
from bugzilla import RHBugzilla
from optparse import OptionParser