summaryrefslogtreecommitdiffstats
path: root/src/providers/ldap
diff options
context:
space:
mode:
authorJakub Hrozek <jhrozek@redhat.com>2014-07-06 22:53:27 +0200
committerJakub Hrozek <jhrozek@redhat.com>2015-08-14 23:51:02 +0200
commit8145ab51b05aa86b2f1a21b49383f55e50b0a2e3 (patch)
tree6889f7d6cb72299d7d778ddbb3c9157e230e1a09 /src/providers/ldap
parentdb5f9ab3feb85aa444eab20428ca2b98801b6783 (diff)
downloadsssd-8145ab51b05aa86b2f1a21b49383f55e50b0a2e3.tar.gz
sssd-8145ab51b05aa86b2f1a21b49383f55e50b0a2e3.tar.xz
sssd-8145ab51b05aa86b2f1a21b49383f55e50b0a2e3.zip
DYNDNS: Add a new option dyndns_server
Some environments use a different DNS server than identity server. For these environments, it would be useful to be able to override the DNS server used to perform DNS updates. This patch adds a new option dyndns_server that, if set, would be used to hardcode a DNS server address into the nsupdate message. Reviewed-by: Pavel Reichl <preichl@redhat.com>
Diffstat (limited to 'src/providers/ldap')
-rw-r--r--src/providers/ldap/sdap_dyndns.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/providers/ldap/sdap_dyndns.c b/src/providers/ldap/sdap_dyndns.c
index a463a2fce..01f4f1722 100644
--- a/src/providers/ldap/sdap_dyndns.c
+++ b/src/providers/ldap/sdap_dyndns.c
@@ -92,6 +92,7 @@ sdap_dyndns_update_send(TALLOC_CTX *mem_ctx,
struct tevent_req *req;
struct tevent_req *subreq;
struct sdap_dyndns_update_state *state;
+ const char *conf_servername;
req = tevent_req_create(mem_ctx, &state, struct sdap_dyndns_update_state);
if (req == NULL) {
@@ -111,6 +112,12 @@ sdap_dyndns_update_send(TALLOC_CTX *mem_ctx,
state->auth_type = auth_type;
state->pass_num = 0;
+ conf_servername = dp_opt_get_string(opts, DP_OPT_DYNDNS_SERVER);
+ if (conf_servername != NULL) {
+ state->servername = conf_servername;
+ state->use_server_with_nsupdate = true;
+ }
+
if (ifname) {
/* Unless one family is restricted, just replace all
* address families during the update