summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/drakbug_report
blob: ca947d4a347d1750e4e999b1fae3445254887e43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/perl

use lib qw(/usr/lib/libDrakX);

use common;
use any;

my %other = (
    'rpm -qa' => join('', sort `rpm -qa`),
    'mandrake version' => mandrake_release(),
    'df' => join('', `df`),
);

print any::report_bug('', %other);