mirror of
https://github.com/webmin/webmin.git
synced 2026-02-03 06:03:28 +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'});
|