mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-07-30 03:14:42 +00:00
ansible_ipa_client: Drop import of configure_nsswitch_database
configure_nsswitch_database has been removed with the freeipa commit
41ef8fba31
The 4.4 compatibility hack leads to a ALREADY installed error in
ipaclient_test because of the removal. This affects ipaclient and
ipareplica roles and also the ipaclient deployment part in ipaserver.
configure_nsswitch_database is not used any more in ipaclient role modules
and therefore simply can be removed from ansible_ipa_client.
This commit is contained in:
@@ -35,7 +35,7 @@ __all__ = ["gssapi", "version", "ipadiscovery", "api", "errors", "x509",
|
|||||||
"configure_sssd_conf", "realm_to_suffix", "run", "timeconf",
|
"configure_sssd_conf", "realm_to_suffix", "run", "timeconf",
|
||||||
"serialization", "configure_krb5_conf", "get_ca_certs",
|
"serialization", "configure_krb5_conf", "get_ca_certs",
|
||||||
"SECURE_PATH", "get_server_connection_interface",
|
"SECURE_PATH", "get_server_connection_interface",
|
||||||
"configure_nsswitch_database", "disable_ra", "client_dns",
|
"disable_ra", "client_dns",
|
||||||
"configure_certmonger", "update_ssh_keys",
|
"configure_certmonger", "update_ssh_keys",
|
||||||
"configure_openldap_conf", "hardcode_ldap_server",
|
"configure_openldap_conf", "hardcode_ldap_server",
|
||||||
"get_certs_from_ldap", "save_state", "create_ipa_nssdb",
|
"get_certs_from_ldap", "save_state", "create_ipa_nssdb",
|
||||||
@@ -143,7 +143,7 @@ if NUM_VERSION >= 40400:
|
|||||||
try:
|
try:
|
||||||
from ipaclient.install.client import configure_krb5_conf, \
|
from ipaclient.install.client import configure_krb5_conf, \
|
||||||
get_ca_certs, SECURE_PATH, get_server_connection_interface, \
|
get_ca_certs, SECURE_PATH, get_server_connection_interface, \
|
||||||
configure_nsswitch_database, disable_ra, client_dns, \
|
disable_ra, client_dns, \
|
||||||
configure_certmonger, update_ssh_keys, configure_openldap_conf, \
|
configure_certmonger, update_ssh_keys, configure_openldap_conf, \
|
||||||
hardcode_ldap_server, get_certs_from_ldap, save_state, \
|
hardcode_ldap_server, get_certs_from_ldap, save_state, \
|
||||||
create_ipa_nssdb, configure_ssh_config, configure_sshd_config, \
|
create_ipa_nssdb, configure_ssh_config, configure_sshd_config, \
|
||||||
@@ -204,8 +204,6 @@ if NUM_VERSION >= 40400:
|
|||||||
|
|
||||||
get_server_connection_interface = \
|
get_server_connection_interface = \
|
||||||
ipa_client_install.get_server_connection_interface
|
ipa_client_install.get_server_connection_interface
|
||||||
configure_nsswitch_database = \
|
|
||||||
ipa_client_install.configure_nsswitch_database
|
|
||||||
disable_ra = ipa_client_install.disable_ra
|
disable_ra = ipa_client_install.disable_ra
|
||||||
client_dns = ipa_client_install.client_dns
|
client_dns = ipa_client_install.client_dns
|
||||||
configure_certmonger = ipa_client_install.configure_certmonger
|
configure_certmonger = ipa_client_install.configure_certmonger
|
||||||
|
|||||||
Reference in New Issue
Block a user