-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
initial README with basic information
Signed-off-by: Aisha Tammy <[email protected]>
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# LDAPD configuration for OpenBSD | ||
|
||
## Server side requirements: | ||
- OpenBSD | ||
- Python 3 | ||
|
||
## Role variables | ||
|
||
| Variable | Default Value | Description | | ||
| -------- | ------------- | ----------- | | ||
| `ldap_domains` | [] | List of domains to configure for ldap. | | ||
| `ldap_admin` | "root" | Top level user with access to everything. | | ||
| `ldap_admin_pass` | "{BSDAUTH}root" | Method to authenticate the root user, defaults to using the inbuilt BASDAUTH OS login mechanism. | | ||
| `ldap_uid_start` | 1000 | The starting point for UID. This value auto-increments for every user defined in `ldap_users`. | | ||
| `ldap_gid_start` | 1000 | The starting point for GID. This also auto-increments. | | ||
|
||
For a detailed description of all variables look at the file [defaults/main.yml](defaults/main.yml). | ||
|
||
## Example configuration | ||
|
||
Look at [Excision Mail](https://github.com/Excision-Mail/Excision-Mail) for a complex playbook example. |