mirror of
https://github.com/webmin/webmin.git
synced 2026-01-16 15:06:07 +00:00
11 lines
247 B
Perl
Executable File
11 lines
247 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
# Refresh background collected info
|
|
|
|
use strict;
|
|
use warnings;
|
|
no warnings 'redefine';
|
|
no warnings 'uninitialized';
|
|
require './system-status-lib.pl';
|
|
&scheduled_collect_system_info('manual');
|
|
&redirect($ENV{'HTTP_REFERER'});
|