mirror of
https://github.com/webmin/webmin.git
synced 2025-07-20 16:48:46 +00:00
21 lines
461 B
Perl
Executable File
21 lines
461 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
# Save the config file
|
|
|
|
use strict;
|
|
use warnings;
|
|
no warnings 'redefine';
|
|
no warnings 'uninitialized';
|
|
require './iscsi-target-lib.pl';
|
|
our (%text, %config, %in);
|
|
&ReadParseMime();
|
|
&error_setup($text{'manual_err'});
|
|
|
|
$in{'data'} =~ /\S/ || &error($text{'manual_edata'});
|
|
my $fh = "CONFIG";
|
|
&open_lock_tempfile($fh, ">$config{'config_file'}");
|
|
&print_tempfile($fh, $in{'data'});
|
|
&close_tempfile($fh);
|
|
|
|
&webmin_log("manual");
|
|
&redirect("");
|