mirror of
https://github.com/webmin/webmin.git
synced 2025-08-16 14:51:18 +00:00
13 lines
325 B
Perl
Executable File
13 lines
325 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
# Collect various pieces of general system information, for display by themes
|
|
# on their status pages. Run every 5 mins from Cron.
|
|
|
|
use strict;
|
|
use warnings;
|
|
no warnings 'redefine';
|
|
no warnings 'uninitialized';
|
|
package system_status;
|
|
require './system-status-lib.pl';
|
|
&scheduled_collect_system_info();
|
|
|