mirror of
https://github.com/webmin/webmin.git
synced 2025-07-21 23:40:34 +00:00
17 lines
482 B
Perl
Executable File
17 lines
482 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
# save_sync.cgi
|
|
# Update synchronization settings
|
|
|
|
require './htpasswd-file-lib.pl';
|
|
$access{'sync'} || &error($text{'sync_ecannot'});
|
|
&ReadParse();
|
|
&lock_file("$module_config_directory/config");
|
|
$config{'sync_create'} = $in{'create'};
|
|
$config{'sync_modify'} = $in{'modify'};
|
|
$config{'sync_delete'} = $in{'delete'};
|
|
&write_file("$module_config_directory/config", \%config);
|
|
&unlock_file("$module_config_directory/config");
|
|
&webmin_log("sync");
|
|
&redirect("");
|
|
|