-
-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #89 from chef-cookbooks/a-tale-of-2-sysconfigs
Break rhelish 6 and 7 sysconfig templates out separately
- Loading branch information
Showing
3 changed files
with
43 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
## Generated by Chef. Do not hand edit | ||
## based on CentOS 6 defaults | ||
|
||
# Options of slapd (see man slapd) | ||
SLAPD_OPTIONS="-f /etc/openldap/slapd.conf" | ||
|
||
# At least one of SLAPD_LDAP, SLAPD_LDAPI and SLAPD_LDAPS must be set to 'yes'! | ||
# | ||
# Run slapd with -h "... ldap:/// ..." | ||
# yes/no, default: yes | ||
SLAPD_LDAP=yes | ||
|
||
# Run slapd with -h "... ldapi:/// ..." | ||
# yes/no, default: yes | ||
SLAPD_LDAPI=yes | ||
|
||
# Run slapd with -h "... ldaps:/// ..." | ||
# yes/no, default: no | ||
<% if node['openldap']['ldaps_enabled'] -%> | ||
SLAPD_LDAPS=yes | ||
<% else -%> | ||
SLAPD_LDAPS=no | ||
<% end -%> | ||
|
||
# Run slapd with -h "... $SLAPD_URLS ..." | ||
# This option could be used instead of previous three ones, but: | ||
# - it doesn't overwrite settings of $SLAPD_LDAP, $SLAPD_LDAPS and $SLAPD_LDAPI options | ||
# - it isn't overwritten by settings of $SLAPD_LDAP, $SLAPD_LDAPS and $SLAPD_LDAPI options | ||
# example: SLAPD_URLS="ldapi:///var/lib/ldap_root/ldapi ldapi:/// ldaps:///" | ||
# default: empty | ||
#SLAPD_URLS="" | ||
|
||
# Maximum allowed time to wait for slapd shutdown on 'service ldap stop' (in seconds) | ||
#SLAPD_SHUTDOWN_TIMEOUT=3 | ||
|
||
# Parameters to ulimit, use to change system limits for slapd | ||
#SLAPD_ULIMIT_SETTINGS="" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters