mirror of
https://github.com/webmin/webmin.git
synced 2025-08-19 01:15:14 +00:00
19 lines
331 B
Perl
Executable File
19 lines
331 B
Perl
Executable File
# Contains a function to supply the syslog module with extra logs
|
|
|
|
do 'proc-lib.pl';
|
|
|
|
# syslog_getlogs()
|
|
# Returns the kernel log, on Linux systems
|
|
sub syslog_getlogs
|
|
{
|
|
if ($gconfig{'os_type'} =~ /-linux$/) {
|
|
return ( { 'cmd' => "dmesg",
|
|
'desc' => $text{'syslog_dmesg'},
|
|
'active' => 1, } );
|
|
}
|
|
else {
|
|
return ( );
|
|
}
|
|
}
|
|
|