diff options
Diffstat (limited to 'hosted-kolab/02-allow-hosted-kolab-service-account-to-list-domains.sh')
-rwxr-xr-x | hosted-kolab/02-allow-hosted-kolab-service-account-to-list-domains.sh | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/hosted-kolab/02-allow-hosted-kolab-service-account-to-list-domains.sh b/hosted-kolab/02-allow-hosted-kolab-service-account-to-list-domains.sh deleted file mode 100755 index 3b20b7c..0000000 --- a/hosted-kolab/02-allow-hosted-kolab-service-account-to-list-domains.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash - - . ./settings.sh - -( - echo "dn: cn=kolab,cn=config" - echo "changetype: modify" - echo "add: aci" - echo "aci: (targetattr = \"*\") (version 3.0;acl \"Hosted Kolab Services\";allow (read,compare,search)(userdn = \"ldap:///uid=hosted-kolab-service,ou=Special Users,${rootdn}\");)" - echo "" -) | ldapmodify -x -h ${ldap_host} -D "${ldap_binddn}" -w "${ldap_bindpw}" |