diff options
author | James Hogarth <james.hogarth@gmail.com> | 2012-08-14 10:54:34 +0100 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2012-10-16 13:23:51 +0200 |
commit | 4fb12db7504920d12ea7db71f312334c877bff7c (patch) | |
tree | 329d9f302242dbecb7c31835350d88bc5531f0a4 /src/config | |
parent | f2c39d4869da56268726f6e8fc224de8cecb7336 (diff) | |
download | sssd-4fb12db7504920d12ea7db71f312334c877bff7c.tar.gz sssd-4fb12db7504920d12ea7db71f312334c877bff7c.tar.bz2 sssd-4fb12db7504920d12ea7db71f312334c877bff7c.zip |
Make TTL configurable for dynamic dns updates
Diffstat (limited to 'src/config')
-rw-r--r-- | src/config/SSSDConfig/__init__.py.in | 1 | ||||
-rw-r--r-- | src/config/etc/sssd.api.d/sssd-ipa.conf | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/config/SSSDConfig/__init__.py.in b/src/config/SSSDConfig/__init__.py.in index 3c6d84c5..9bd69953 100644 --- a/src/config/SSSDConfig/__init__.py.in +++ b/src/config/SSSDConfig/__init__.py.in @@ -131,6 +131,7 @@ option_strings = { 'ipa_backup_server' : _('Address of backup IPA server'), 'ipa_hostname' : _('IPA client hostname'), 'ipa_dyndns_update' : _("Whether to automatically update the client's DNS entry in FreeIPA"), + 'ipa_dyndns_ttl' : _("The TTL to apply to the client's DNS entry after updating it"), 'ipa_dyndns_iface' : _("The interface whose IP should be used for dynamic DNS updates"), 'ipa_hbac_search_base' : _("Search base for HBAC related objects"), 'ipa_hbac_refresh' : _("The amount of time between lookups of the HBAC rules against the IPA server"), diff --git a/src/config/etc/sssd.api.d/sssd-ipa.conf b/src/config/etc/sssd.api.d/sssd-ipa.conf index efc1e8b3..56184590 100644 --- a/src/config/etc/sssd.api.d/sssd-ipa.conf +++ b/src/config/etc/sssd.api.d/sssd-ipa.conf @@ -4,6 +4,7 @@ ipa_server = str, None, false ipa_backup_server = str, None, false ipa_hostname = str, None, false ipa_dyndns_update = bool, None, false +ipa_dyndns_ttl = int, None, false ipa_dyndns_iface = str, None, false ipa_hbac_search_base = str, None, false ipa_host_search_base = str, None, false |