mirror of
https://github.com/webmin/webmin.git
synced 2025-07-20 16:48:46 +00:00
13 lines
270 B
Perl
Executable File
13 lines
270 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
# delete_export.cgi
|
|
# Delete an existing export
|
|
|
|
require './bsdexports-lib.pl';
|
|
&ReadParse();
|
|
&lock_file($config{'exports_file'});
|
|
@exps = &list_exports();
|
|
&delete_export($exps[$in{'index'}]);
|
|
&unlock_file($config{'exports_file'});
|
|
&redirect("");
|
|
|