mirror of
https://github.com/webmin/webmin.git
synced 2026-02-06 07:22:20 +00:00
22 lines
606 B
Perl
Executable File
22 lines
606 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
# save_auto.cgi
|
|
# Update automatic sync options
|
|
|
|
require './majordomo-lib.pl';
|
|
&ReadParse();
|
|
%access = &get_module_acl();
|
|
&can_edit_list(\%access, $in{'name'}) || &error($text{'edit_ecannot'});
|
|
&lock_file("$module_config_directory/config");
|
|
if ($in{'sync'}) {
|
|
$config{"sync_$in{'name'}"} = 1;
|
|
}
|
|
else {
|
|
delete($config{"sync_$in{'name'}"});
|
|
}
|
|
$config{"shost_$in{'name'}"} = $in{'shost'};
|
|
&write_file("$module_config_directory/config", \%config);
|
|
&unlock_file("$module_config_directory/config");
|
|
&webmin_log("auto", undef, $in{'name'});
|
|
&redirect("edit_list.cgi?name=$in{'name'}");
|
|
|