From: Frank Brehm Date: Thu, 23 Mar 2017 08:54:04 +0000 (+0100) Subject: Extendig docomentation in etc/ldap.ini.default and etc/mk-home.ini.default X-Git-Tag: 0.1.2~227 X-Git-Url: https://git.uhu-banane.net/?a=commitdiff_plain;h=44a717bca8a3a0a7c893052b76a52063d134b51e;p=pixelpark%2Fadmin-tools.git Extendig docomentation in etc/ldap.ini.default and etc/mk-home.ini.default --- diff --git a/etc/ldap.ini.default b/etc/ldap.ini.default index 510748b..7f316de 100644 --- a/etc/ldap.ini.default +++ b/etc/ldap.ini.default @@ -9,11 +9,30 @@ [LDAP] +# The LDAP Server name or address +# maybe multiple hosts as a comma separated list host = ldap.pixelpark.com + +# The (UDP) port on the LDAP server +# default 389 for ldap:// and 636 for ldaps:// port = 389 + +# Use SSL/TLS for communication with the LDAP server (ldaps://) +# Boolean value +ssl = False + +# Base DN for all subtree searches base_dn = o=isp + +# The DN to use to authenticate against the LDAP server (binding) bind_dn = uid=Solaris_NSS,ou=Unix NSS,ou=Applications,o=pixelpark,o=isp + + +# The password of the latter Bind-DN +# Note: there is no default value for the password, it HAS to be configured #bind_pw = .nss.pro + +# Timeout in seconds for all LDAP operations timeout = 5 # vim: filetype=dosini diff --git a/etc/mk-home.ini.default b/etc/mk-home.ini.default index d559a44..564bb36 100644 --- a/etc/mk-home.ini.default +++ b/etc/mk-home.ini.default @@ -6,13 +6,52 @@ [LDAP] +# The LDAP Server name or address +# maybe multiple hosts as a comma separated list +#host = ldap.pixelpark.com + +# The (UDP) port on the LDAP server +# default 389 for ldap:// and 636 for ldaps:// +#port = 389 + +# Use SSL/TLS for communication with the LDAP server (ldaps://) +# Boolean value +#ssl = False + +# Base DN for all subtree searches +#base_dn = o=isp + +# The DN to use to authenticate against the LDAP server (binding) +# Must have write permissions for this script +#bind_dn = uid=Solaris_NSS,ou=Unix NSS,ou=Applications,o=pixelpark,o=isp bind_dn = cn=admin + +# The password of the latter Bind-DN +# Note: there is no default value for the password, it HAS to be configured #bind_pw = +# Timeout in seconds for all LDAP operations +#timeout = 30 + [mk-home] + +# The initial numeric UID of all new users +# The script is searching for it and replacing it #initial_uid = 999999999 + +# The chroot directory, where the home directories are mounted +# Maybe / for Solaris #chroot_homedir = /mnt/nfs + +# The root of all home directories +# home directories outside this root dir are not considered #home_root = /home + +# The skeleton directory (absolute path), which is used +# to create new home directories +#skel_dir = /etc/skel + +# The DN for the LDAP entry, which is used to generate the next numeric Uid #dn_counter = uid=uidNumber,ou=ldapTool,ou=Applications,o=Pixelpark,o=isp # vim: filetype=dosini