Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Net::Ldap question

Status
Not open for further replies.

silverlocket

IS-IT--Management
Joined
Jan 17, 2007
Messages
1
Location
IT
Hi guys....

I'm trying to delete the value held by an ldap entry.
But instead of deleting the value i'm getting the attribute deleted... Could anyone give me a clue?
Here's my code...

my @entries = $mesg2->entries;
foreach my $entry (@entries) {
$entry->delete("cpUSRTimeZoneName" => []);
$entry->update($ldap);
$entry->dump;
}


Thx

Susan
 
Status
Not open for further replies.

Similar threads

Part and Inventory Search

Sponsor

Back
Top