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
+21
View File
@@ -0,0 +1,21 @@
#!/usr/local/bin/perl
# Delete multiple PostgreSQL groups
require './postgresql-lib.pl';
&ReadParse();
$access{'users'} || &error($text{'user_ecannot'});
&error_setup($text{'group_derr'});
@d = split(/\0/, $in{'d'});
@d || &error($text{'group_enone'});
foreach $g (@d) {
if (&get_postgresql_version() >= 8.0) {
&execute_sql_logged($config{'basedb'}, "drop group $g");
}
else {
&execute_sql_logged($config{'basedb'}, "delete from pg_group where grosysid = $g");
}
}
&webmin_log("delete", "groups", scalar(@d));
&redirect("list_groups.cgi");