| Server IP : 189.126.111.107 / Your IP : 216.73.217.69 Web Server : Apache System : Linux www.gadotticar.com.br 5.4.0-135-generic #152-Ubuntu SMP Wed Nov 23 20:19:22 UTC 2022 x86_64 User : gadotticar ( 1000) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/webmin/exports/ |
Upload File : |
#!/usr/bin/perl
# Delete, disable or enable all exports for some directories
use strict;
use warnings;
no warnings 'redefine';
no warnings 'uninitialized';
require './exports-lib.pl';
our (%text, %in, %config);
# Validate inputs
&error_setup($text{'delete_err'});
&ReadParse();
my @d = split(/\0/, $in{'d'});
@d || &error($text{'delete_enone'});
# Find the actual clients
&lock_file($config{'exports_file'});
my @exps = &list_exports();
my @dels;
foreach my $e (@exps) {
if (&indexof($e->{'dir'}, @d) >= 0) {
push(@dels, $e);
}
}
# Take them out, one by one
foreach my $d (reverse(@dels)) {
if ($in{'delete'}) {
&delete_export($d);
}
elsif ($in{'disable'} && $d->{'active'}) {
$d->{'active'} = 0;
&modify_export($d, $d);
}
elsif ($in{'enable'} && !$d->{'active'}) {
$d->{'active'} = 1;
&modify_export($d, $d);
}
}
&unlock_file($config{'exports_file'});
&webmin_log($in{'delete'} ? "delete" : $in{'disable'} ? "disable" : "enable",
"exports", scalar(@dels));
&redirect("");