Files
webmin--webmin/cluster-useradmin/delete_host.cgi
T
2026-07-13 13:12:17 +08:00

12 lines
263 B
Perl
Executable File

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