该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README

openldap_server

This roles installs the OpenLDAP server on the target machine. It has the option to enable/disable SSL by setting it in defaults or overriding it.

Requirements

This role requires Ansible 1.4 or higher, and platform requirements are listed in the metadata file.

Role Variables

The variables that can be passed to this role and a brief description about them are as follows:

openldap_serverdomain_name: example.com    # The domain prefix for ldap
openldap_serverrootpw: passme              # This is the password for admin for openldap
openldap_serverenable_ssl: true            # To enable/disable ssl for the ldap
openldap_servercountry: US                 # The self signed ssl certificate parameters
openldap_serverstate: Oregon
openldap_serverlocation: Portland
openldap_serverorganization: IT

# Create users
openldap_enable_user_creation: true
openldap_server_users:
  staff:
    william:
      password: 26April1564
      fullname: William Shakespeare
      givenname: William
      surname: Shakespeare
      email: william@example.com
      shell: /usr/bin/zsh
      phone: "555-5555-555"
    john:
      password: 31Oct1795
      fullname: John Keats
      givenname: John
      surname: Keats
      email: john@example.com
      shell: /usr/bin/bash

Examples

  1. Configure an OpenLDAP server without SSL:

    • hosts: all sudo: true roles:
      • role: bennojoy.openldap_server openldap_server_domain_name: example.com openldap_server_rootpw: passme openldap_server_enable_ssl: false
  2. Configure an OpenLDAP server with SSL:

    • hosts: all sudo: true roles:
      • role: bennojoy.openldap_server openldap_server_domain_name: example.com openldap_server_rootpw: passme openldap_server_enable_ssl: true openldap_server_country: US openldap_server_state: Oregon openldap_server_location: Portland openldap_server_organization: IT

Dependencies

None

License

BSD

Author Information

Benno Joy

空文件

简介

取消

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化