项目文件夹

文件
2026-07-13 13:12:17 +08:00

12 行
257 B
Perl
可执行文件

#!/usr/local/bin/perl
# delete_host.cgi
# Remove a managed host from the list
require './cluster-usermin-lib.pl';
&ReadParse();
@hosts = &list_usermin_hosts();
($host) = grep { $_->{'id'} == $in{'id'} } @hosts;
&delete_usermin_host($host);
&redirect("");