Handle hostnames with upper-case letters
[webmin.git] / postgresql / save_sync.cgi
1 #!/usr/local/bin/perl
2 # save_sync.cgi
3 # Save unix-postgresql synchronization options
4
5 require './postgresql-lib.pl';
6 &ReadParse();
7
8 $config{'sync_create'} = $in{'sync_create'};
9 $config{'sync_modify'} = $in{'sync_modify'};
10 $config{'sync_delete'} = $in{'sync_delete'};
11 &write_file("$module_config_directory/config", \%config);
12 &redirect("");
13