mirror of
https://github.com/webmin/webmin.git
synced 2026-02-06 15:32:20 +00:00
16 lines
388 B
Perl
Executable File
16 lines
388 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
# save_mkisofs.cgi
|
|
# Save global ISO filesystem options
|
|
|
|
require './burner-lib.pl';
|
|
$access{'global'} || &error($text{'mkisofs_ecannot'});
|
|
&ReadParse();
|
|
|
|
$config{'novers'} = $in{'novers'};
|
|
$config{'notrans'} = $in{'notrans'};
|
|
$config{'nobak'} = $in{'nobak'};
|
|
$config{'fsyms'} = $in{'fsyms'};
|
|
&write_file("$module_config_directory/config", \%config);
|
|
&redirect("");
|
|
|