chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:12:17 +08:00
commit cf8edb9f21
44281 changed files with 1655134 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
#!/usr/bin/perl
# Delete a bunch of table rows
require './shorewall-lib.pl';
&ReadParse();
&can_access($in{'table'}) || &error($text{'list_ecannot'});
$pfunc = &get_parser_func(\%in);
&error_setup($text{'delete_err'});
@d = split(/\0/, $in{'d'});
scalar(@d) || &error($text{'delete_enone'});
&lock_table($in{'table'});
foreach $idx (sort { $b <=> $a } @d) {
&delete_table_row($in{'table'}, $pfunc, $idx);
}
&unlock_table($in{'table'});
&webmin_log('deletes', 'table', $in{'table'});
&redirect("list.cgi?table=$in{'table'}");