aboutsummaryrefslogtreecommitdiffstats
path: root/rpmdrake.pm
diff options
context:
space:
mode:
Diffstat (limited to 'rpmdrake.pm')
-rw-r--r--rpmdrake.pm6
1 files changed, 6 insertions, 0 deletions
diff --git a/rpmdrake.pm b/rpmdrake.pm
index 0c3ac574..aa3e6241 100644
--- a/rpmdrake.pm
+++ b/rpmdrake.pm
@@ -75,6 +75,7 @@ our @EXPORT = qw(
myexit
readconf
remove_wait_msg
+ run_drakbug
show_urpm_progress
slow_func
slow_func_statusbar
@@ -944,6 +945,11 @@ sub open_help {
statusbar_msg(N("The help window has been started, it should appear shortly on your desktop."), 1);
}
+sub run_drakbug {
+ my ($id) = @_;
+ run_program::raw({ detach => 1 }, 'drakbug', '--report', $id);
+}
+
sub strip_first_underscore { join '', map { s/_//; $_ } @_ }
1;