mirror of
https://github.com/webmin/webmin.git
synced 2026-02-07 07:52:13 +00:00
11 lines
272 B
Perl
Executable File
11 lines
272 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;
|
|
package system_status;
|
|
require './system-status-lib.pl';
|
|
&scheduled_collect_system_info();
|
|
|