| 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/at/ |
Upload File : |
#!/usr/bin/perl
# Delete multiple at jobs
use strict;
use warnings;
no warnings 'redefine';
no warnings 'uninitialized';
our(%access, %text, %in);
require './at-lib.pl';
&ReadParse();
&error_setup($text{'deletes_err'});
my @d = split(/\0/, $in{'d'});
@d || &error($text{'deletes_enone'});
# Delete each one
my @jobs = &list_atjobs();
foreach my $d (@d) {
my ($job) = grep { $_->{'id'} eq $d } @jobs;
$job || &error($text{'delete_egone'});
&can_edit_user(\%access, $job->{'user'}) ||
&error($text{'edit_ecannot'});
&delete_atjob($job->{'id'});
}
&webmin_log("delete", "jobs", scalar(@d));
&redirect("");