From bf1f8bff5c87344b808603cba7d6a252909a0c58 Mon Sep 17 00:00:00 2001
From: Thomas Woerner <twoerner@redhat.com>
Date: Mon, 25 Mar 2019 13:33:36 +0100
Subject: [PATCH] ipaclient/library/ipaclient_setup_ntp: Fix import of
 ansible_ipa_client

The import line of ansible_ipa_client was not correct and used a test
version of the binding that is not possible anymore due to the move of
the module_utils directories into the specific role locations.
---
 roles/ipaclient/library/ipaclient_setup_ntp.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/roles/ipaclient/library/ipaclient_setup_ntp.py b/roles/ipaclient/library/ipaclient_setup_ntp.py
index 8925d153..d427bc2b 100644
--- a/roles/ipaclient/library/ipaclient_setup_ntp.py
+++ b/roles/ipaclient/library/ipaclient_setup_ntp.py
@@ -87,7 +87,7 @@ import os
 import socket
 
 from ansible.module_utils.basic import AnsibleModule
-from ansible.module_utils.ansible_freeipa.client import *
+from ansible.module_utils.ansible_ipa_client import *
 
 def main():
     module = AnsibleModule(
-- 
GitLab