mirror of
https://github.com/webmin/webmin.git
synced 2025-07-21 23:40:34 +00:00
18 lines
433 B
Perl
Executable File
18 lines
433 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
# openall.cgi
|
|
# Add all classes to the open list
|
|
|
|
require './cluster-software-lib.pl';
|
|
&ReadParse();
|
|
($host) = grep { $_->{'id'} eq $in{'id'} } &list_software_hosts();
|
|
foreach $p (@{$host->{'packages'}}) {
|
|
@w = split(/\//, $p->{'class'});
|
|
for($j=0; $j<@w; $j++) {
|
|
push(@list, join('/', @w[0..$j]));
|
|
}
|
|
}
|
|
@list = &unique(@list);
|
|
&save_heiropen(\@list, $in{'id'});
|
|
&redirect("edit_host.cgi?id=$in{'id'}");
|
|
|