forked from webmin/webmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig_save.cgi
executable file
·52 lines (45 loc) · 1.39 KB
/
config_save.cgi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/local/bin/perl
# config_save.cgi
# Save inputs from config.cgi
BEGIN { push(@INC, ".."); };
use WebminCore;
require './config-lib.pl';
&init_config();
&ReadParse();
$m = $in{'module'};
&error_setup($text{'config_err'});
&foreign_available($m) || &error($text{'config_eaccess'});
%access = &get_module_acl(undef, $m);
$access{'noconfig'} && &error($text{'config_ecannot'});
mkdir("$config_directory/$m", 0700);
&lock_file("$config_directory/$m/config");
&read_file("$config_directory/$m/config", \%newconfig);
%oldconfig = %newconfig;
$mdir = &module_root_directory($m);
if (-r "$mdir/config_info.pl") {
# Module has a custom config editor
&foreign_require($m, "config_info.pl");
local $fn = "${m}::config_form";
if (defined(&$fn)) {
$func++;
&foreign_call($m, "config_save", \%newconfig);
}
}
if (!$func) {
# Use config.info to parse config inputs
&parse_config(\%newconfig, "$mdir/config.info", $m);
}
&write_file("$config_directory/$m/config", \%newconfig);
&unlock_file("$config_directory/$m/config");
# Call any post-config save function
local $pfn = "${m}::config_post_save";
if (defined(&$pfn)) {
&foreign_call($m, "config_post_save", \%newconfig, \%oldconfig);
}
# Refresh installed modules
if (&foreign_check("webmin")) {
&foreign_require("webmin", "webmin-lib.pl");
&webmin::build_installed_modules(0, $m);
}
&webmin_log("_config_", undef, undef, \%in, $m);
&redirect("/$m/");