Re: Modify only one attribute that has multiple values of the same name

Francis Swasey <[email protected]> Thu, 25 Apr 2013 12:04:08 -0400
Newsgroups gmane.comp.lang.perl.modules.ldap
Message-ID <[email protected]>
On Apr 25, 2013, at 11:57 AM, Brian Gaber <[email protected]> wrote:

> I have a LDAP object that contains an attribute SFTrule that can have multiple values.  How do I change just one of the SFTrule attribute values?


In pure ldif:

dn: existing dn
changetype: modify
delete: SFTrule
SFTrule: old value
-
add: SFTrule
SFTrule: new value
-