63 lines
2.2 KiB
Perl
Executable File
63 lines
2.2 KiB
Perl
Executable File
#!/usr/bin/perl
|
|
# tta_delapp.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 'app-lib.pl';
|
|
if ( $config{'is_ldapcache'} eq "true" ) {
|
|
do "ldap-lib.pl";
|
|
}
|
|
|
|
&headerstta($text{'index_delapp'}, "", "delapp",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");
|
|
&ReadParse();
|
|
|
|
$appname=$in{appname};
|
|
|
|
if ($appname ) {
|
|
$descrip="";
|
|
$ensapp="";
|
|
$dnsapp="";
|
|
$obj_name="";
|
|
%h_apps=&list_apps();
|
|
if ( $h_apps{$appname}->{'alias'} ne $appname ) {
|
|
$err_msg=$text{'list_errno'};
|
|
&footHere;
|
|
exit;
|
|
}
|
|
$dnapp=$h_apps{$appname}->{'obj'};
|
|
$obj_name=$h_apps{$appname}->{'name'};
|
|
$ensapp=$h_apps{$appname}->{'ens'};
|
|
$descrip=$h_apps{$appname}->{'descrip'};
|
|
$grpalias=$h_apps{$appname}->{'grpalias'};
|
|
}
|
|
print "<table width=100% border>\n";
|
|
print "<tr $tb> <td><font color='$revtext'><b>$text{'titidx_delapp'} $appname - $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 (!$ensapp ) { &footHere; exit } ;
|
|
$ens_obj = "--name \"".$config{tta_ldapcacheApps}."/$ensapp\"\n";
|
|
$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" && $dnapp ) {
|
|
$ldapcache_server=1;
|
|
&connect_cache ();
|
|
$dn = "$dnapp,".$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", "delapps.cgi", "apps", "apps_list", $appname, "", \%h_apps );
|
|
print "<tr><tr></table></table><hr><p>\n";
|
|
&footer($config{'back_return'},$text{'index'});
|
|
print "<p><p><p>\n";
|
|
do "footer.pl";
|