Temporarily disable authconfig backup and restore

The authconfig command from authselect-compat-0.3.2-1 does not support
backup and restore at all. Temporarily disable backup and restore of
auth config to fix broken ipa-backup.

Fixes: https://pagure.io/freeipa/issue/7478
Signed-off-by: Christian Heimes <cheimes@redhat.com>
Reviewed-By: Rob Crittenden <rcritten@redhat.com>
This commit is contained in:
Christian Heimes 2018-03-29 17:02:23 +02:00
parent 64438f8619
commit d705320ec1

View File

@ -27,7 +27,22 @@ from ipaplatform.redhat.tasks import RedHatTaskNamespace
class FedoraTaskNamespace(RedHatTaskNamespace):
pass
def backup_auth_configuration(self, path):
"""Dummy method
On Fedora 28, authconfig from authselect-compat does not implement
backup and restore.
"""
pass
def restore_auth_configuration(self, path):
"""Dummy method
On Fedora 28, authconfig from authselect-compat does not implement
backup and restore.
"""
pass
tasks = FedoraTaskNamespace()