]> Frank Brehm's Git Trees - pixelpark/admin-tools.git/commitdiff
Extendig docomentation in etc/ldap.ini.default and etc/mk-home.ini.default
authorFrank Brehm <frank.brehm@pixelpark.com>
Thu, 23 Mar 2017 08:54:04 +0000 (09:54 +0100)
committerFrank Brehm <frank.brehm@pixelpark.com>
Thu, 23 Mar 2017 08:54:04 +0000 (09:54 +0100)
etc/ldap.ini.default
etc/mk-home.ini.default

index 510748b36ebe9eb6086e83a4b83444aa8a23bbf8..7f316ded3ec422c0be7f5ca6f1151bada64593c4 100644 (file)
@@ -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
index d559a44248e0f4e996a983199796f164475c95b4..564bb36de682c598a756b28c3a0d60bc90d0bc11 100644 (file)
@@ -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 = <LDAP admin password>
 
+# 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