From 72a5a25f049a9222cb79af29270c8ed004cce23f Mon Sep 17 00:00:00 2001 From: Ralf Haferkamp Date: Mon, 27 Feb 2023 12:45:09 +0100 Subject: [PATCH] ocis_ldap: Remove leftover schema file When moving to the bitnami OpenLDAP image, we forgot to remove the owncloud schema file from the `ldif` directory. --- .../ocis_ldap/config/ldap/ldif/10_owncloud_schema.ldif | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 deployments/examples/ocis_ldap/config/ldap/ldif/10_owncloud_schema.ldif diff --git a/deployments/examples/ocis_ldap/config/ldap/ldif/10_owncloud_schema.ldif b/deployments/examples/ocis_ldap/config/ldap/ldif/10_owncloud_schema.ldif deleted file mode 100644 index 3aec8f8e1a..0000000000 --- a/deployments/examples/ocis_ldap/config/ldap/ldif/10_owncloud_schema.ldif +++ /dev/null @@ -1,9 +0,0 @@ -# This LDIF files describes the ownCloud schema and can be used to -# add two optional attributes: ownCloudQuota and ownCloudUUID -# The ownCloudUUID is used to store a unique, non-reassignable, persistent identifier for users and groups -dn: cn=owncloud,cn=schema,cn=config -objectClass: olcSchemaConfig -cn: owncloud -olcAttributeTypes: ( 1.3.6.1.4.1.39430.1.1.1 NAME 'ownCloudQuota' DESC 'User Quota (e.g. 2 GB)' EQUALITY caseExactMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE ) -olcAttributeTypes: ( 1.3.6.1.4.1.39430.1.1.2 NAME 'ownCloudUUID' DESC 'A non-reassignable and persistent account ID)' EQUALITY uuidMatch SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.1.16.1 SINGLE-VALUE ) -olcObjectClasses: ( 1.3.6.1.4.1.39430.1.2.1 NAME 'ownCloud' DESC 'ownCloud LDAP Schema' AUXILIARY MAY ( ownCloudQuota $ ownCloudUUID ) )