61 lines
2.4 KiB
Perl
Executable File
61 lines
2.4 KiB
Perl
Executable File
#!/usr/bin/perl
|
|
# tta_deldomain.cgi
|
|
# Delete OrgUnits 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';
|
|
do "ldap-lib.pl";
|
|
|
|
&headerstta($text{'index_deldomain'}, "", "deldomain",undef,1,0,"$text{'headpage_right'}"."$text{'head_logout'}",undef,undef,"$text{head_below}" );
|
|
print "<hr><p>\n";
|
|
#if ( $config{'is_ldapcache'} ne "true" ) { &footCacheHere; exit }
|
|
&foreign_require("proc", "proc-lib.pl");
|
|
$ldapcache_server=1;
|
|
&connect_cache();
|
|
&ReadParse();
|
|
|
|
$domainname=$in{domainname};
|
|
|
|
if ($domainname ) {
|
|
$descrip="";
|
|
$ensdomain="";
|
|
$dnsdomain="";
|
|
%h_domains=&list_domains();
|
|
if ( $h_domains{$domainname}->{'alias'} ne $domainname) {
|
|
$err_msg=$domainname.":".$text{'list_errno'};
|
|
&footHere;
|
|
exit;
|
|
}
|
|
$ensdomain=$h_domains{$domainname}->{ens};
|
|
$dndomain=$h_domains{$domainname}->{obj};
|
|
$obj_name=$h_domains{$domainname}->{name};
|
|
$descrip=$h_domains{$domainname}->{descrip};
|
|
}
|
|
print "<table width=100% border>\n";
|
|
print "<tr $tb> <td><font color='$revtext'><b>$text{'titidx_deldomain'} $domainname - $obj_name </b></td> </tr>\n";
|
|
print "<tr $cb> <td><table width=100%>\n";
|
|
print "<center>\n";
|
|
print "<tr></tr><tr></tr>\n";
|
|
print "<tr><td><pre>\n";
|
|
if (!$ensdomain ) { &footHere; exit } ;
|
|
$ens_obj = "--name \"".$config{tta_ldapcacheApps}."/$ensdomain\" --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" && $dndomain ) {
|
|
$ldapcache_server=1;
|
|
&connect_cache ();
|
|
$dn = "$dndomain,".$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", "deldomains.cgi", "domains", "domains_list", $domainname, "", \%h_domains );
|
|
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";
|