File tree 1 file changed +4
-4
lines changed 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 4
4
#
5
5
# migrate-ldif-389-ds-1.4.awk v1.0.0
6
6
#
7
- # Awk script to migrate an LDIF from RFC 2307 to RFC 2307bis in addition to
8
- # the other schema changes I found with our particular data when upgrading
9
- # from 389-ds 1.3.x (CentOS 7) to 1.4.x (CentOS Stream 8).
7
+ # Awk script to migrate an LDIF from RFC 2307 schema to RFC 2307bis in addition
8
+ # to some other changes to attributes that I found with our particular data when
9
+ # upgrading from 389-ds 1.3.x (CentOS 7) to 1.4.x (CentOS Stream 8).
10
10
#
11
11
# To use this script, stop your 389-ds 1.3.x instance and export an LDIF:
12
12
#
@@ -51,7 +51,7 @@ BEGIN {}
51
51
print ;
52
52
break ;
53
53
# givenName is not allowed. Note we also check for base64 encoded
54
- # attribu tes with a double colon here.
54
+ # attributes with a double colon here.
55
55
case /^ givenName: + .*/ :
56
56
sub (/^ givenName:+ . * /, " #&" );
57
57
print ;
You can’t perform that action at this time.
0 commit comments