Commit e3b9136b authored by Benoit Mortier's avatar Benoit Mortier
Browse files

Fixes: #2368 Only replacing keyword at beginning of new lines now. taken from schema2ldif repo

Showing with 3 additions and 3 deletions
+3 -3
...@@ -68,9 +68,9 @@ while (<>) { ...@@ -68,9 +68,9 @@ while (<>) {
# objectIdentifier -> olcObjectIdentifier: # objectIdentifier -> olcObjectIdentifier:
# objectClass -> olcObjectClasses: # objectClass -> olcObjectClasses:
# attributeType -> olcAttributeTypes: # attributeType -> olcAttributeTypes:
s/objectidentifier/olcObjectIdentifier:/i; s/^objectidentifier/olcObjectIdentifier:/i;
s/attributetype/olcAttributeTypes:/i; s/^attributetype/olcAttributeTypes:/i;
s/objectclass/olcObjectClasses:/i; s/^objectclass/olcObjectClasses:/i;
# [openldap.ldif] # [openldap.ldif]
# Then leading whitespace must be fixed. The slapd.conf format allows # Then leading whitespace must be fixed. The slapd.conf format allows
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment