blob: e031a008f6ee5e41de31789f0c7349446e977f7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/usr/bin/perl
use lib qw(/usr/lib/libDrakX);
use MDK::Common;
use any;
my %other = (
'rpm -qa' => join('', sort `rpm -qa`),
'mandrake version' => cat_('/etc/redhat-release'),
);
print any::report_bug('', %other);
|