diff --git a/sssd_test_framework/hosts/ipa.py b/sssd_test_framework/hosts/ipa.py index aa57f3d..514f729 100644 --- a/sssd_test_framework/hosts/ipa.py +++ b/sssd_test_framework/hosts/ipa.py @@ -171,29 +171,33 @@ def restore(self, backup_data: Any | None) -> None: if not isinstance(backup_data, PurePosixPath): raise TypeError(f"Expected PurePosixPath, got {type(backup_data)}") - backup_path = str(backup_data) - self.logger.info(f"Restoring IPA server from {backup_path}") + # Bind sometimes fails for unknown reason + @retry_command(delay=0, match_stderr="Unable to bind to LDAP server", check_rc=False) + def _restore(): + return self.conn.run( + f""" + set -ex - self.conn.run( - f""" - set -ex + function restore {{ + rm --force --recursive "$2" + if [ -d "$1" ] || [ -f "$1" ]; then + cp --force --archive "$1" "$2" + fi + }} - function restore {{ - rm --force --recursive "$2" - if [ -d "$1" ] || [ -f "$1" ]; then - cp --force --archive "$1" "$2" - fi - }} - - ipa-restore --unattended --password "{self.adminpw}" --data --online "{backup_path}/ipa" - - rm --force --recursive /etc/sssd /var/lib/sss /var/log/sssd - restore "{backup_path}/krb5.conf" /etc/krb5.conf - restore "{backup_path}/krb5.keytab" /etc/krb5.keytab - restore "{backup_path}/config" /etc/sssd - restore "{backup_path}/logs" /var/log/sssd - restore "{backup_path}/lib" /var/lib/sss - """, - log_level=ProcessLogLevel.Error, - ) + ipa-restore --unattended --password "{self.adminpw}" --data --online "{backup_path}/ipa" + + rm --force --recursive /etc/sssd /var/lib/sss /var/log/sssd + restore "{backup_path}/krb5.conf" /etc/krb5.conf + restore "{backup_path}/krb5.keytab" /etc/krb5.keytab + restore "{backup_path}/config" /etc/sssd + restore "{backup_path}/logs" /var/log/sssd + restore "{backup_path}/lib" /var/lib/sss + """, + log_level=ProcessLogLevel.Error, + ) + + backup_path = str(backup_data) + self.logger.info(f"Restoring IPA server from {backup_path}") + _restore() self.svc.restart("sssd.service")