summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/drakbug_report
blob: 672960272b71557c9d905c2772d9f31fa7525b46 (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`),
    'mageia version' => mageia_release(),
    'df' => join('', `df`),
);

print any::report_bug(%other);