--- ebox-usersandgroups-2.0.12.orig/debian/ebox-usersandgroups.cron.d +++ ebox-usersandgroups-2.0.12/debian/ebox-usersandgroups.cron.d @@ -0,0 +1,7 @@ +# /etc/cron.d/ebox-usersandgroups + +SHELL=/bin/sh +PATH=/usr/bin:/bin + +# Sync the slaves every 5 minutes if there are missing changes +*/5 * * * * root /usr/share/ebox-usersandgroups/slave-sync --- ebox-usersandgroups-2.0.12.orig/debian/ebox-usersandgroups.postinst +++ ebox-usersandgroups-2.0.12/debian/ebox-usersandgroups.postinst @@ -0,0 +1,70 @@ +#!/bin/bash + +set -e +#DEBHELPER# + +# Load debconf +. /usr/share/debconf/confmodule + + +case "$1" in + configure) + # Create slapd certificate + /usr/share/ebox/ebox-create-certificate /etc/ldap/ssl > /dev/null 2>&1 + chown -R openldap:openldap /etc/ldap/ssl + + #add the ebox group and user + if ! getent group ebox-usercorner > /dev/null 2>&1 + then + addgroup --system ebox-usercorner + fi + if ! getent passwd ebox-usercorner > /dev/null 2>&1 + then + adduser --system --home /var/lib/ebox-usercorner/ \ + --disabled-password --ingroup ebox-usercorner ebox-usercorner + fi + + CORNER_LOG="/var/log/ebox-usercorner/" + test -d $CORNER_LOG || mkdir $CORNER_LOG + chown -R ebox-usercorner:ebox-usercorner $CORNER_LOG + + # create user session ids and conf directories + test -d /var/lib/ebox-usercorner/conf/ || mkdir -p /var/lib/ebox-usercorner/conf/ + test -d /var/lib/ebox-usercorner/sids/ || mkdir -p /var/lib/ebox-usercorner/sids/ + chown -R ebox-usercorner:ebox-usercorner /var/lib/ebox-usercorner + + # Setup random redis password + REDIS_PASS="/var/lib/ebox-usercorner/conf/redis.passwd" + if [ ! -f $REDIS_PASS ]; then + touch $REDIS_PASS + chmod 0660 $REDIS_PASS + tr -dc A-Za-z0-9 < /dev/urandom | head -c10 > $REDIS_PASS + fi + chown ebox-usercorner:ebox $REDIS_PASS + + + # create ebox user corner apache certificates + /usr/share/ebox/ebox-create-certificate /var/lib/ebox-usercorner/ssl > /dev/null 2>&1 || true + + # Migrate data if needed + /usr/share/ebox/ebox-migrate /usr/share/ebox-usersandgroups/migration/ || true + + # regenrate slap configuration and restart + # this is needed bz it may be changes in slapd configuration + invoke-rc.d ebox users restart || true + invoke-rc.d slapd restart || true + + dpkg-trigger --no-await ebox + ;; + triggered) + #remove the usercorner menu cache + rm -f /var/lib/ebox-usercorner/menucache || true + + #restart the usercorner apache + invoke-rc.d ebox usercorner restart || true + ;; +esac + + + +exit 0 --- ebox-usersandgroups-2.0.12.orig/debian/ebox.slapd-frontend.upstart +++ ebox-usersandgroups-2.0.12/debian/ebox.slapd-frontend.upstart @@ -0,0 +1,6 @@ +pre-start script + /etc/init.d/slapd stop || true +end script + +exec /usr/sbin/slapd -d 0 -h 'ldap://0.0.0.0/ ldapi://%2fvar%2frun%2fslapd%2fldapi/????x-mod=0777' -u openldap -g openldap -F /etc/ldap/slapd-frontend.d +respawn --- ebox-usersandgroups-2.0.12.orig/debian/ebox-usersandgroups.triggers +++ ebox-usersandgroups-2.0.12/debian/ebox-usersandgroups.triggers @@ -0,0 +1 @@ +interest ebox-usercorner --- ebox-usersandgroups-2.0.12.orig/debian/ebox.redis-usercorner.upstart +++ ebox-usersandgroups-2.0.12/debian/ebox.redis-usercorner.upstart @@ -0,0 +1,2 @@ +exec sudo -u ebox-usercorner /usr/bin/redis-server /var/lib/ebox-usercorner/conf/redis.conf +respawn --- ebox-usersandgroups-2.0.12.orig/debian/compat +++ ebox-usersandgroups-2.0.12/debian/compat @@ -0,0 +1 @@ +5 --- ebox-usersandgroups-2.0.12.orig/debian/copyright +++ ebox-usersandgroups-2.0.12/debian/copyright @@ -0,0 +1,31 @@ +This package was debianized by Isaac Clerencia on +Fri, 20 Feb 2005 15:13:22 +0100. +It's currently maintained by José A. Calvo + +It was downloaded from http://www.zentyal.org/ + +Upstream Author: eBox Technologies S.L. + +Copyright (C) 2004-2010 eBox Technologies S.L. + +License: + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License + for more details. + + On Debian systems, the complete text of the GNU General Public + License can be found in /usr/share/common-licenses/GPL file. + +The Debian packaging is: + + (C) 2004, Isaac Clerencia + (C) 2008, Javier Uruen Val + (C) 2010, José A. Calvo + +and is licensed under the GPL, see `/usr/share/common-licenses/GPL'. --- ebox-usersandgroups-2.0.12.orig/debian/ebox.slapd-translucent.upstart +++ ebox-usersandgroups-2.0.12/debian/ebox.slapd-translucent.upstart @@ -0,0 +1,6 @@ +pre-start script + /etc/init.d/slapd stop || true +end script + +exec /usr/sbin/slapd -d 0 -h ldap://127.0.0.1:1390/ -u openldap -g openldap -F /etc/ldap/slapd-translucent.d +respawn --- ebox-usersandgroups-2.0.12.orig/debian/control +++ ebox-usersandgroups-2.0.12/debian/control @@ -0,0 +1,18 @@ +Source: ebox-usersandgroups +Section: web +Priority: optional +Maintainer: José Antonio Calvo +Build-Depends: debhelper (>= 5.0.0), cdbs +Standards-Version: 3.8.2 + +Package: ebox-usersandgroups +Architecture: all +Depends: ebox (>= 2.0), ebox (<< 2.0.100), libebox (>= 2.0.7), slapd (>= 2.4.15), ldap-utils (>= 2.4.15), ldap-auth-config, ebox-firewall, libnet-ldap-perl, libcrypt-rijndael-perl, libcrypt-smbhash-perl, adduser, ${misc:Depends} +Description: Zentyal - Users and Groups + Zentyal is a Linux small business server that can act as + a Gateway, Unified Threat Manager, Office Server, Infrastructure + Manager, Unified Communications Server or a combination of them. One + single, easy-to-use platform to manage all your network services. + . + This module adds a LDAP server to your Zentyal installation, allowing you + to add users and groups to be used by other Zentyal modules. --- ebox-usersandgroups-2.0.12.orig/debian/rules +++ ebox-usersandgroups-2.0.12/debian/rules @@ -0,0 +1,5 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/autotools.mk +include debian/cdbs/ebox.mk --- ebox-usersandgroups-2.0.12.orig/debian/ebox.ad-pwdsync.upstart +++ ebox-usersandgroups-2.0.12/debian/ebox.ad-pwdsync.upstart @@ -0,0 +1,2 @@ +exec /usr/share/ebox-usersandgroups/ebox-pwdsync-server +respawn --- ebox-usersandgroups-2.0.12.orig/debian/changelog +++ ebox-usersandgroups-2.0.12/debian/changelog @@ -0,0 +1,357 @@ +ebox-usersandgroups (2.0.12) lucid; urgency=low + + * New upstream release + + -- José A. Calvo Mon, 11 Apr 2011 15:34:25 +0200 + +ebox-usersandgroups (2.0.11) lucid; urgency=low + + * New upstream release + + -- José A. Calvo Wed, 23 Feb 2011 16:13:25 +0100 + +ebox-usersandgroups (2.0.10) lucid; urgency=low + + * New upstream release + + -- José A. Calvo Sun, 09 Jan 2011 19:28:00 +0100 + +ebox-usersandgroups (2.0.9) lucid; urgency=low + + * New upstream release + + -- José A. Calvo Sat, 18 Dec 2010 02:06:25 +0100 + +ebox-usersandgroups (2.0.8) lucid; urgency=low + + * New upstream release + + -- José A. Calvo Sat, 11 Dec 2010 15:27:16 +0100 + +ebox-usersandgroups (2.0.7) lucid; urgency=low + + * New upstream release + + -- José A. Calvo Sun, 07 Nov 2010 19:01:12 +0100 + +ebox-usersandgroups (2.0.6) lucid; urgency=low + + * New upstream release + + -- José A. Calvo Thu, 04 Nov 2010 19:44:11 +0100 + +ebox-usersandgroups (2.0.5) lucid; urgency=low + + * New upstream release + + -- José A. Calvo Wed, 13 Oct 2010 00:21:00 +0200 + +ebox-usersandgroups (2.0.4) lucid; urgency=low + + * New upstream release + + -- José A. Calvo Tue, 12 Oct 2010 21:54:14 +0200 + +ebox-usersandgroups (2.0.3) lucid; urgency=low + + * New upstream release + + -- José A. Calvo Sun, 03 Oct 2010 04:00:59 +0200 + +ebox-usersandgroups (2.0.2) lucid; urgency=low + + * New upstream release + + -- José A. Calvo Sat, 18 Sep 2010 15:19:11 +0200 + +ebox-usersandgroups (2.0.1) lucid; urgency=low + + * New upstream release + + -- José A. Calvo Fri, 03 Sep 2010 22:49:25 +0200 + +ebox-usersandgroups (2.0) lucid; urgency=low + + * New upstream release + + -- José A. Calvo Mon, 30 Aug 2010 22:10:15 +0200 + +ebox-usersandgroups (1.5.10-0ubuntu1~ppa1~lucid1) lucid; urgency=low + + * New upstream release + + -- José A. Calvo Fri, 27 Aug 2010 03:09:46 +0200 + +ebox-usersandgroups (1.5.9-0ubuntu1~ppa1~lucid1) lucid; urgency=low + + * New upstream release + + -- José A. Calvo Thu, 26 Aug 2010 16:05:24 +0200 + +ebox-usersandgroups (1.5.8-0ubuntu1~ppa1~lucid1) lucid; urgency=low + + * New upstream release + + -- José A. Calvo Mon, 23 Aug 2010 02:26:02 +0200 + +ebox-usersandgroups (1.5.7-0ubuntu1~ppa1~lucid1) lucid; urgency=low + + * New upstream release + + -- José A. Calvo Wed, 18 Aug 2010 17:24:11 +0200 + +ebox-usersandgroups (1.5.6-0ubuntu1~ppa1~lucid1) lucid; urgency=low + + * New upstream release + + -- José A. Calvo Fri, 13 Aug 2010 11:37:44 +0200 + +ebox-usersandgroups (1.5.5-0ubuntu1~ppa1~lucid1) lucid; urgency=low + + * New upstream release + + -- José A. Calvo Tue, 10 Aug 2010 16:25:35 +0200 + +ebox-usersandgroups (1.5.4-0ubuntu1~ppa1~lucid1) lucid; urgency=low + + * New upstream release + + -- José A. Calvo Wed, 04 Aug 2010 15:46:34 +0200 + +ebox-usersandgroups (1.5.3-0ubuntu1~ppa1~lucid1) lucid; urgency=low + + * New upstream release + + -- José A. Calvo Mon, 19 Jul 2010 12:07:54 +0200 + +ebox-usersandgroups (1.5.2-0ubuntu1~ppa1~lucid1) lucid; urgency=low + + * New upstream release + + -- José A. Calvo Sun, 20 Jun 2010 20:40:11 +0200 + +ebox-usersandgroups (1.5.1-0ubuntu1~ppa1~lucid1) lucid; urgency=low + + * New upstream release + + -- José A. Calvo Thu, 13 May 2010 01:33:28 +0200 + +ebox-usersandgroups (1.5-0ubuntu1) lucid; urgency=low + + [Javier Uruen Val] + * New usptream release (LP: #521811) + * Drop debian/patches as upstream already ships them + * Drop simple-patchsys + * debian/ebox-usersandgroups.postinst + - Create slapd certificate + * debian/control + - Bump eBox depenency + - Update description + + -- Javier Uruen Val Sun, 07 Feb 2010 18:07:46 +0100 + +ebox-usersandgroups (1.3.5-0ubuntu2) karmic; urgency=low + + [Javier Uruen Val] + * debian/patches (LP: #451510) + - Add 03_check_slapd_apparmor_profile.patch + - Add 04_only_listen_on_lo.patch + + -- Javier Uruen Val Wed, 14 Oct 2009 00:04:43 +0200 + +ebox-usersandgroups (1.3.5-0ubuntu1) karmic; urgency=low + + [Javier Uruen Val] + * New upstream release [LP: 411553] + * cdbs/ebox.mk + - GConf schemas are not used anymore + - Remove SCHEMASPATH variable + - Remove schemadir variable + - Fix the script that copy upstart scripts + - Use new upstart directory and file naming convention + * debian/control + - Bump standards version + - Bump eBox depenency + - Remove dependency on dpatch + - Add dependency on libcrypt-rijndael-perl, libcrypt-smbhash-perl + - Add verioned dependency on slapd (>= 2.4.15) + - Add dependency on adduser + * debian/ebox-usersandgroups.postinst + - Fix indentation + - Do not pkill gconfd as it's not necessary anymore + - Run ebox trigger + - Create structure for user corner + - Add set -e + * debian/ebox-usersandgroups.templates (To ask LDAP password) + * debian/ebox-usersandgroups.postrm + - Run ebox trigger + - Add set -e + * debian/ebox.slapd-frontend.upstart (Added) + * debian/ebox.slapd-replica.upstart (Added) + * debian/ebox.slapd-translucent.upstart (Added) + * debian/patches + - Drop dpatch system + + Drop 01_ldap_conf_backend.dpatch (Already shipped by upstream) + - Use simple-patch.sys + + Add 01_use_shipped_authcookie.patch to enable AuthCookie + + Add 02_fix_karmic_ldap_structure.path to initialize LDAP db + * debian/rules + - Do not include debian/cdbs/gnome.mk + - Include /usr/share/cdbs/1/rules/simple-patchsys.mk + * debian/watch + - Change URL + + -- Javier Uruen Val Wed, 05 Aug 2009 12:29:43 +0200 + +ebox-usersandgroups (0.12.1-0ubuntu1) jaunty; urgency=low + + [ Javier Uruen Val ] + * New upstream release. Closes (LP: #318827) + * debian/watch: + - add watch file. + * debian/patches/01_ldap_conf_backend.dpatch + - Patch to support new configuration backend in slapd + + -- Mathias Gug Mon, 26 Jan 2009 22:24:19 -0500 + +ebox-usersandgroups (0.11.99-0ubuntu5) hardy; urgency=low + + * debian/pattches/06_ldap_connect_retry + - Try to connect to slapd several times before giving up. (LP: #220262) + + -- Chuck Short Mon, 21 Apr 2008 10:56:32 -0400 + +ebox-usersandgroups (0.11.99-0ubuntu4) hardy; urgency=low + + * debian/patches/03_fix_restore_backup.dpatch + - Fixes ldap backup restoring. + * debian/patches/04_fix_utf8_ldap.dpatch + - Disable workaround to eneable utf8 strings. + * debian/patches/05_ldap_password_file_permissions.dpatch + - Remove read permissions for adm group in eBox ldap password file. + + -- Chuck Short Mon, 07 Apr 2008 10:29:24 -0400 + +ebox-usersandgroups (0.11.99-0ubuntu3) hardy; urgency=low + + * debian/patches/03_allow_unsafe_chars_in_password.dpatch + - Allow "unsafe" characters in password field. (LP: #207622) + + -- Chuck Short Thu, 27 Mar 2008 11:04:13 -0400 + +ebox-usersandgroups (0.11.99-0ubuntu2) hardy; urgency=low + + * debian/control, + debian/patches/01_make_apparmour_aware.dpatch, + debian/patches/02_fix_ebox_initialise + - Added patches from upstream. + + -- Chuck Short Tue, 11 Mar 2008 10:52:40 -0400 + +ebox-usersandgroups (0.11.99-0ubuntu1) hardy; urgency=low + + * New upstream version. + + -- Chuck Short Wed, 27 Feb 2008 13:48:56 -0500 + +ebox-usersandgroups (0.11.99-0ubuntu1~ppa1) hardy; urgency=low + + * New upstream release + + -- Javier Uruen Val Mon, 25 Feb 2008 15:31:20 +0100 + +ebox-usersandgroups (0.11.99) unstable; urgency=low + + * New upstream release + + -- Enrique José Hernández Blasco Tue, 8 Jan 2008 16:14:41 +0100 + +ebox-usersandgroups (0.11.3-0ubuntu1~ppa1) hardy; urgency=low + + * New upstream release + + -- Javier Uruen Val Sun, 13 Jan 2008 19:14:30 +0100 + +ebox-usersandgroups (0.11) unstable; urgency=low + + * New upstream release + + -- Javier Uruen Val Wed, 28 Nov 2007 15:23:36 +0100 + +ebox-usersandgroups (0.10.99) unstable; urgency=low + + * New upstream release + + -- Javier Uruen Val Thu, 01 Nov 2007 21:38:16 +0100 + +ebox-usersandgroups (0.10) unstable; urgency=low + + * New upstream release + + -- Javier Uruen Val Tue, 16 Oct 2007 12:07:12 +0200 + +ebox-usersandgroups (0.9.100) unstable; urgency=low + + * New upstream release + + -- Javier Uruen Val Tue, 04 Sep 2007 14:24:57 +0200 + +ebox-usersandgroups (0.9.99) unstable; urgency=low + + * New upstream release + + -- Javier Amor Garcia Tue, 24 Jul 2007 13:04:49 +0200 + +ebox-usersandgroups (0.9.3) unstable; urgency=low + + * New upstream release + + -- Javier Uruen Val Sun, 24 Jun 2007 16:38:50 +0200 + +ebox-usersandgroups (0.9.2) unstable; urgency=low + + * New upstream release + + -- Javier Uruen Val Tue, 12 Jun 2007 18:59:29 +0200 + +ebox-usersandgroups (0.9.1) unstable; urgency=low + + * New upstream release + + -- Javier Uruen Val Tue, 15 May 2007 13:02:28 +0200 + +ebox-usersandgroups (0.9) unstable; urgency=low + + * New upstream release + + -- Javier Amor Garcia Tue, 27 Mar 2007 10:26:29 +0200 + +ebox-usersandgroups (0.7.1) unstable; urgency=low + + * New upstream release + + -- Daniel Baeyens Sicilia Wed, 22 Mar 2006 16:08:34 +0100 + +ebox-usersandgroups (0.7.0.99-rc1+0.7.1-rc1) unstable; urgency=low + + * New upstream release + + -- Javier Uruen Val Tue, 17 Jan 2006 11:45:29 +0100 + +ebox-usersandgroups (0.5.1) unstable; urgency=low + + * New upstream release + + -- Guillermo Ontañón Mon, 14 Mar 2005 14:33:45 +0100 + +ebox-usersandgroups (0.5) unstable; urgency=low + + * New upstream release + + -- Isaac Clerencia Thu, 3 Mar 2005 19:56:15 +0100 + +ebox-usersandgroups (0.4-2) unstable; urgency=low + + * New upstream release + + -- Isaac Clerencia Sat, 4 Dec 2004 16:36:45 +0100 --- ebox-usersandgroups-2.0.12.orig/debian/ebox.apache2-usercorner.upstart +++ ebox-usersandgroups-2.0.12/debian/ebox.apache2-usercorner.upstart @@ -0,0 +1,2 @@ +exec /usr/share/ebox-usersandgroups/ebox-usercorner-apache2-start +respawn --- ebox-usersandgroups-2.0.12.orig/debian/ebox.slapd-replica.upstart +++ ebox-usersandgroups-2.0.12/debian/ebox.slapd-replica.upstart @@ -0,0 +1,6 @@ +pre-start script + /etc/init.d/slapd stop || true +end script + +exec /usr/sbin/slapd -d 0 -h ldap://0.0.0.0:1389/ -u openldap -g openldap -F /etc/ldap/slapd-replica.d +respawn --- ebox-usersandgroups-2.0.12.orig/debian/ebox-usersandgroups.postrm +++ ebox-usersandgroups-2.0.12/debian/ebox-usersandgroups.postrm @@ -0,0 +1,23 @@ +#!/bin/bash + +set -e + +# We need to unconfigure and purge module's configuration +# before the gconf schemas have been removed (i.e before gconf +# debhelper has been run). That's why we do things before +# and after gconf debhelper is run +if [ "$1" = "purge" ]; then + # Purge configuration + /usr/share/ebox/ebox-clean-gconf users || true +fi + + +#DEBHELPER# + +case "$1" in + remove) + dpkg-trigger --no-await ebox + ;; +esac + + --- ebox-usersandgroups-2.0.12.orig/debian/cdbs/ebox.mk +++ ebox-usersandgroups-2.0.12/debian/cdbs/ebox.mk @@ -0,0 +1,22 @@ +DEB_CONFIGURE_SCRIPT_ENV += LOGPATH="/var/log/ebox" +DEB_CONFIGURE_SCRIPT_ENV += CONFPATH="/var/lib/ebox/conf" +DEB_CONFIGURE_SCRIPT_ENV += STUBSPATH="/usr/share/ebox/stubs" +DEB_CONFIGURE_SCRIPT_ENV += CGIPATH="/usr/share/ebox/cgi/" +DEB_CONFIGURE_SCRIPT_ENV += TEMPLATESPATH="/usr/share/ebox/templates" +DEB_CONFIGURE_SCRIPT_ENV += WWWPATH="/usr/share/ebox/www/" +DEB_CONFIGURE_SCRIPT_ENV += CSSPATH="/usr/share/ebox/www/css" +DEB_CONFIGURE_SCRIPT_ENV += IMAGESPATH="/usr/share/ebox/www/images" +DEB_CONFIGURE_SCRIPT_ENV += VARPATH="/var" +DEB_CONFIGURE_SCRIPT_ENV += ETCPATH="/etc/ebox" + +DEB_CONFIGURE_EXTRA_FLAGS := --disable-runtime-tests +DEB_MAKE_INVOKE = $(MAKE) $(DEB_MAKE_FLAGS) -C $(DEB_BUILDDIR) + +$(patsubst %,binary-install/%,$(DEB_PACKAGES)) :: binary-install/%: + for event in debian/*.upstart ; do \ + [ -f $$event ] || continue; \ + install -d -m 755 debian/$(cdbs_curpkg)/etc/init; \ + DESTFILE=$$(basename $$(echo $$event | sed 's/\.upstart/.conf/g')); \ + install -m 644 "$$event" debian/$(cdbs_curpkg)/etc/init/$$DESTFILE; \ + done; + --- ebox-usersandgroups-2.0.12.orig/debian/po/POTFILES.in +++ ebox-usersandgroups-2.0.12/debian/po/POTFILES.in @@ -0,0 +1 @@ +[type: gettext/rfc822deb] ebox-usersandgroups.templates --- ebox-usersandgroups-2.0.12.orig/debian/po/templates.pot +++ ebox-usersandgroups-2.0.12/debian/po/templates.pot @@ -0,0 +1,30 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: ebox-usersandgroups@packages.debian.org\n" +"POT-Creation-Date: 2009-01-27 13:21+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: zentyal-i18n@lists.zentyal.org\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: password +#. Description +#: ../ebox-usersandgroups.templates:1001 +msgid "LDAP administrator password:" +msgstr "" + +#. Type: password +#. Description +#: ../ebox-usersandgroups.templates:1001 +msgid "" +"Please enter the LDAP administrator password to set up the LDAP directory." +msgstr ""