mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-07-31 03:44:41 +00:00
ansible_freeipa_module: New api_get_basedn, IPAAnsibleModule.ipa_get_basedn
These functions have been added to get the basedb from api.env for use with DN for example. api_get_basedn is returning api.env.basedn IPAAnsibleModule.ipa_get_basedn is a wrapper for api_get_basedn
This commit is contained in:
@@ -419,6 +419,9 @@ else:
|
|||||||
def api_get_realm():
|
def api_get_realm():
|
||||||
return api.env.realm
|
return api.env.realm
|
||||||
|
|
||||||
|
def api_get_basedn():
|
||||||
|
return api.env.basedn
|
||||||
|
|
||||||
def gen_add_del_lists(user_list, res_list):
|
def gen_add_del_lists(user_list, res_list):
|
||||||
"""
|
"""
|
||||||
Generate the lists for the addition and removal of members.
|
Generate the lists for the addition and removal of members.
|
||||||
@@ -882,6 +885,11 @@ else:
|
|||||||
"""Retrieve IPA API realm."""
|
"""Retrieve IPA API realm."""
|
||||||
return api_get_realm()
|
return api_get_realm()
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def ipa_get_basedn():
|
||||||
|
"""Retrieve IPA API basedn."""
|
||||||
|
return api_get_basedn()
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def ipa_command_exists(command):
|
def ipa_command_exists(command):
|
||||||
"""
|
"""
|
||||||
|
|||||||
Reference in New Issue
Block a user