83 lines
2.0 KiB
YAML
83 lines
2.0 KiB
YAML
---
|
||
# .. vim: foldmarker=[[[,]]]:foldmethod=marker
|
||
|
||
# ipr-cnrs.netdata default variables [[[
|
||
# ======================================
|
||
|
||
# Packages and installation [[[
|
||
# -----------------------------
|
||
|
||
# .. envvar:: sssd_pkg_state [[[
|
||
#
|
||
# State of the packages to install. Possible options :
|
||
#
|
||
# ``latest``
|
||
# Default. Ensure those packages are in the latest state.
|
||
#
|
||
# ``absent``
|
||
# Default. Ensure to remove those packages.
|
||
#
|
||
# ``present``
|
||
# Ensure to install those packages.
|
||
#
|
||
sssd_pkg_state: 'latest'
|
||
# ]]]
|
||
# .. envvar:: sssd__unwanted_packages_state [[[
|
||
#
|
||
# State of the unwanted packages. Possible options :
|
||
#
|
||
# ``absent``
|
||
# Default. Ensure to remove those packages.
|
||
#
|
||
# ``present``
|
||
# Ensure to install those packages.
|
||
#
|
||
# ``latest``
|
||
# Ensure those packages are in the latest state.
|
||
#
|
||
# ``Anything else``
|
||
# The packages will not be touch.
|
||
#
|
||
sssd__unwanted_packages_state: 'absent'
|
||
# ]]]
|
||
# .. envvar:: sssd__deploy_state [[[
|
||
#
|
||
# What is the desired state which this role should achieve ? Possible options :
|
||
#
|
||
# ``present``
|
||
# Default. Ensure that sssd is installed and configured as requested.
|
||
#
|
||
# ``absent``
|
||
# TODO: Ensure that sssd is uninstalled and it's configuration is removed.
|
||
#
|
||
sssd__deploy_state: 'present'
|
||
# ]]]
|
||
# ]]]
|
||
|
||
|
||
# Configuration
|
||
sssd_conf_manage: true
|
||
sssd_main_conf_path: '/etc/sssd/sssd.conf'
|
||
sssd_main_conf_tpl: 'etc/sssd/sssd.conf.j2'
|
||
sssd_mkhomedir: true
|
||
sssd_home_path: '/home'
|
||
sssd_shell: '/bin/bash'
|
||
sssd_shell_override: False
|
||
|
||
sssd_sudoers_ldap: false
|
||
|
||
# LDAP info
|
||
sssd_domain: ''
|
||
sssd_schema: 'rfc2307bis'
|
||
sssd_uris: []
|
||
sssd_search_base: ''
|
||
sssd_bind_dn: ''
|
||
sssd_bind_password: ''
|
||
|
||
# nsswitch configuration
|
||
sssd_nsswitch_manage: false
|
||
|
||
# Service
|
||
sssd_service_name: 'sssd'
|
||
sssd_flush_handlers: False
|