| Server IP : 182.53.201.61 / Your IP : 216.73.217.175 Web Server : Apache/2.2.15 (Fedora) System : Linux km10.dyndns.org 2.6.31.5-127.fc12.i686.PAE #1 SMP Sat Nov 7 21:25:57 EST 2009 i686 User : apache ( 48) PHP Version : 5.3.3 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/13386/root/usr/libexec/webmin/webmin/ |
Upload File : |
#!/usr/bin/perl
# Save status collection options
require './webmin-lib.pl';
&ReadParse();
&foreign_require("system-status");
&error_setup($text{'status_err'});
# Save collection interval
if ($in{'interval_def'}) {
$system_status::config{'collect_interval'} = 'none';
}
else {
$in{'interval'} =~ /^\d+$/ && $in{'interval'} > 0 &&
$in{'interval'} <= 60 || &error($text{'status_einterval'});
$system_status::config{'collect_interval'} = $in{'interval'};
}
# Save collection options
$system_status::config{'collect_pkgs'} = $in{'pkgs'};
$system_status::config{'collect_notemp'} = !$in{'temp'};
&lock_file($system_status::module_config_file);
&save_module_config(\%system_status::config, 'system-status');
&unlock_file($system_status::module_config_file);
&system_status::setup_collectinfo_job();
if ($in{'interval_def'}) {
&unlink_file($system_status::collected_info_file);
}
else {
&system_status::scheduled_collect_system_info();
}
&webmin_log("status");
&redirect("");