ansible.sssd/defaults/main.yml

83 lines
2.0 KiB
YAML
Raw Normal View History

2017-07-18 14:23:07 +02:00
---
2019-03-12 14:07:31 +01:00
# .. vim: foldmarker=[[[,]]]:foldmethod=marker
2017-07-18 14:23:07 +02:00
2019-03-12 14:07:31 +01:00
# ipr-cnrs.netdata default variables [[[
# ======================================
# Packages and installation [[[
# -----------------------------
2017-07-18 14:23:07 +02:00
2019-03-12 14:07:31 +01:00
# .. 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'
2019-03-12 14:07:31 +01:00
# ]]]
# .. 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'
# ]]]
# ]]]
2017-07-18 14:23:07 +02:00
# 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'
2018-02-07 16:04:28 +01:00
sssd_shell: '/bin/bash'
sssd_shell_override: False
2017-07-18 14:23:07 +02:00
sssd_sudoers_ldap: false
2017-07-18 14:23:07 +02:00
# LDAP info
sssd_domain: ''
sssd_schema: 'rfc2307bis'
sssd_uris: []
sssd_search_base: ''
sssd_bind_dn: ''
sssd_bind_password: ''
# nsswitch configuration
sssd_nsswitch_manage: false
2017-07-18 14:23:07 +02:00
# Service
sssd_service_name: 'sssd'
sssd_flush_handlers: False