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

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

use standalone;
use common;
use any;

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

print any::report_bug(%other);