59 lines
2.2 KiB
Perl
Executable File
59 lines
2.2 KiB
Perl
Executable File
#!/usr/bin/perl
|
|
# tta_delgrphosts.cgi
|
|
# Delete Hosts Group from Services with Tarantella
|
|
# STTA Rev. 1.3 Copyright (c) 2001-2004 Jesús Pérez Lorenzo --- license GNU GPL
|
|
# stta: (@#) 1.31051043346- [2004_01_29_102036]
|
|
|
|
require './stta-lib.pl';
|
|
&foreign_require("proc", "proc-lib.pl");
|
|
if ( $config{'is_ldapcache'} eq "true" ) {
|
|
do "ldap-lib.pl";
|
|
}
|
|
&ReadParse();
|
|
|
|
$usergrphosts=$in{usergrphosts};
|
|
&headerstta($text{'index_delgrphosts'}, "", "delgrphosts",undef,1,0,"$text{'headpage_right'}"."$text{'head_logout'}",undef,undef,"$text{head_below}" );
|
|
print "<hr><p>\n";
|
|
print "<table width=100% border>\n";
|
|
print "<tr $tb> <td><font color='$revtext'><b>$text{'titidx_delgrphosts'} $usergrphosts </b></td> </tr>\n";
|
|
print "<tr $cb> <td><table width=100%>\n";
|
|
print "<center>\n";
|
|
|
|
if ($usergrphosts ) {
|
|
$obj_name="";
|
|
$ens_grphosts="";
|
|
$dn_grphosts="";
|
|
%h_grphosts=&list_grphosts();
|
|
if ( $h_grphosts{$usergrphosts}->{'alias'} ne $usergrphosts) {
|
|
$err_msg=$text{'list_errno'};
|
|
&footHere;
|
|
exit;
|
|
}
|
|
$ens_grphosts=$h_grphosts{$usergrphosts}->{ens};
|
|
$dn_grphosts=$h_grphosts{$usergrphosts}->{obj};
|
|
$obj_name=$h_grphosts{$usergrphosts}->{name};
|
|
}
|
|
print "<tr></tr><tr></tr>\n";
|
|
print "<tr><td><pre>\n";
|
|
if (!$ens_grphosts ) { &footHere; exit } ;
|
|
$ens_obj = "--name \"".$config{tta_base}."/$ens_grphosts\" --children";
|
|
$type_cmd="delete";
|
|
if (&run_tta_cmd("delete",$ens_obj)) {
|
|
print "</pre><tr><p><b>$text{'user_delete'}... Tarantella </b></tr>\n";
|
|
} else { &html_errshow("tta")};
|
|
if ( $config{'is_ldapcache'} eq "true" && $dn_grphosts ) {
|
|
$ldapcache_server=1;
|
|
&connect_cache ();
|
|
$dn="$dn_grphosts,".$config{ldapcache_base};
|
|
if ( &del_ldap_obj($dn) eq 0 ) {
|
|
print "<tr><b>".$text{'user_delete'}."... LDAP CACHE ... </b></tr>\n";
|
|
} else { &html_errshow("ldap")};
|
|
}
|
|
&out_objslist( "delete", "delgrphosts.cgi", "grphosts", "grphosts_list", $usergrphosts, "", \%h_grphosts );
|
|
print "</tr></td></pre>\n";
|
|
print "<tr><tr></table></table><hr><p>\n";
|
|
&footer($config{'back_return'},$text{'index'});
|
|
print "<p><p><p>\n";
|
|
do "footer.pl";
|
|
exit;
|