Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
backupninja
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
raT
backupninja
Commits
ca62d94c
Commit
ca62d94c
authored
17 years ago
by
micah
Browse files
Options
Downloads
Patches
Plain Diff
fixup ldap SSL/TLS options, make TLS default in helper, Closes: Trac#13
parent
84a6d7fa
No related branches found
No related tags found
No related merge requests found
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
AUTHORS
+1
-0
1 addition, 0 deletions
AUTHORS
ChangeLog
+2
-0
2 additions, 0 deletions
ChangeLog
handlers/ldap.helper.in
+9
-1
9 additions, 1 deletion
handlers/ldap.helper.in
handlers/ldap.in
+9
-4
9 additions, 4 deletions
handlers/ldap.in
with
21 additions
and
5 deletions
AUTHORS
+
1
−
0
View file @
ca62d94c
...
...
@@ -24,3 +24,4 @@ Jamie McClelland -- cstream patches
ale -- ldap cleanup
Sami Haahtinen <ressu@ressukka.net>
Matthew Palmer -- mysql enhancements
romain.tartiere@healthgrid.org -- ldap fixes
This diff is collapsed.
Click to expand it.
ChangeLog
+
2
−
0
View file @
ca62d94c
...
...
@@ -26,6 +26,8 @@ version 0.9.5 -- unreleased
instead of on/off
. Fixed problem that caused combination of slapcat and compress to not work
together (Closes: Trac#29)
. Applied patch from romain.tartiere@healthgrid.org to fix the SSL/TLS options
to be correct, also set TLS to be the default over SSL (Closes: Trac#13)
maildir:
. Added an examples file (Closes: Trac#23)
. Applied patch from Anarcat that fixes the cp/mkdir calls to not use GNU
...
...
This diff is collapsed.
Click to expand it.
handlers/ldap.helper.in
+
9
−
1
View file @
ca62d94c
...
...
@@ -7,13 +7,17 @@ while true; do
checkBox
"ldap action wizard"
"check options (slapcat OR ldapsearch)"
\
"slapcat"
"export ldif using slapcat"
yes
\
"ldapsearch"
"export ldif using ldapsearch"
no
\
"compress"
"compress the ldif output files"
yes
"compress"
"compress the ldif output files"
yes
\
"ssl"
"use SSL (deprecated)"
no
\
"tls"
"use TLS extended operations (RFC2246, RFC2830)"
yes
status
=
$?
compress
=
"compress = no"
method
=
"method = <unset>"
restart
=
"restart = no"
binddn
=
""
passwordfile
=
""
ssl
=
"ssl = no"
tls
=
"tls = no"
[
$status
=
1
]
&&
return
;
result
=
"
$REPLY
"
for
opt
in
$result
;
do
...
...
@@ -33,6 +37,8 @@ while true; do
binddn
=
"binddn =
$REPLY
"
require_packages ldap-utils
;;
'"ssl"'
)
ssl
=
"ssl = yes"
;;
'"tls"'
)
tls
=
"tls = yes"
;;
esac
done
get_next_filename
$configdirectory
/30.ldap
...
...
@@ -42,6 +48,8 @@ $compress
$restart
$binddn
$passwordfile
$ssl
$tls
# backupdir = /var/backups/ldap
# conf = /etc/ldap/slapd.conf
# databases = all
...
...
This diff is collapsed.
Click to expand it.
handlers/ldap.in
+
9
−
4
View file @
ca62d94c
...
...
@@ -13,9 +13,10 @@ getconf method ldapsearch
getconf passwordfile
getconf binddn
getconf ldaphost
getconf tls
yes
getconf ssl
yes
getconf tls no
if
[
$
tls
=
'yes'
]
;
then
if
[
$
ssl
=
'yes'
]
;
then
URLBASE
=
"ldaps"
else
URLBASE
=
"ldap"
...
...
@@ -56,10 +57,14 @@ if [ "$ldif" == "yes" ]; then
if
[
"
$method
"
==
"slapcat"
]
;
then
execstr
=
"
$SLAPCAT
-f
$conf
-b
$dbsuffix
"
else
LDAPARGS
=
""
if
[
"
$tls
"
==
"yes"
]
;
then
LDAPARGS
=
"-ZZ"
fi
if
[
-n
"
$ldaphost
"
]
;
then
execstr
=
"
$LDAPSEARCH
-H
$URLBASE
://
$ldaphost
-x -L -b ""
$dbsuffix
"" -D ""
$binddn
"" -y
$passwordfile
"
execstr
=
"
$LDAPSEARCH
$LDAPARGS
-H
$URLBASE
://
$ldaphost
-x -L -b ""
$dbsuffix
"" -D ""
$binddn
"" -y
$passwordfile
"
else
execstr
=
"
$LDAPSEARCH
-x -L -b ""
$dbsuffix
"" -D ""
$binddn
"" -y
$passwordfile
"
execstr
=
"
$LDAPSEARCH
-H
$URLBASE
://
$ldaphost
-x -L -b ""
$dbsuffix
"" -D ""
$binddn
"" -y
$passwordfile
"
fi
[
-f
"
$passwordfile
"
]
||
fatal
"Password file
$passwordfile
not found. When method is set to ldapsearch, you must also specify a password file."
debug
"
$execstr
"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment