module_utils/ansible_ipa_replica: Initialize skip_schema_check to None

This setting can not be set for replica deployments, but needs to be
initilized.
This commit is contained in:
Thomas Woerner
2019-07-17 19:30:32 +02:00
parent 8f8d65cab9
commit b0da219bf5

View File

@@ -204,6 +204,7 @@ class installer_obj(object):
self.unattended = not self.interactive
#self.promote = self.replica_file is None
self.promote = True
self.skip_schema_check = None
#def __getattribute__(self, attr):
# value = super(installer_obj, self).__getattribute__(attr)