RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
Bug 1894494 - [RFE] New ipabackup role for backup and restore
Summary: [RFE] New ipabackup role for backup and restore
Keywords:
Status: CLOSED ERRATA
Alias: None
Product: Red Hat Enterprise Linux 8
Classification: Red Hat
Component: ansible-freeipa
Version: 8.4
Hardware: Unspecified
OS: Unspecified
unspecified
unspecified
Target Milestone: rc
: 8.0
Assignee: Thomas Woerner
QA Contact: ipa-qe
URL:
Whiteboard:
Depends On:
Blocks: 1894575
TreeView+ depends on / blocked
 
Reported: 2020-11-04 11:14 UTC by Thomas Woerner
Modified: 2021-05-18 15:51 UTC (History)
5 users (show)

Fixed In Version: ansible-freeipa-0.3.1-1
Doc Type: If docs needed, set a value
Doc Text:
Clone Of:
Environment:
Last Closed: 2021-05-18 15:51:41 UTC
Type: Bug
Target Upstream Version:
Embargoed:
pm-rhel: mirror+


Attachments (Terms of Use)

Description Thomas Woerner 2020-11-04 11:14:43 UTC
New ipabackup role for backup and restore

This role allows to backup and IPA server, to copy a backup from the
server to the controller, to copy all backups from the server to the
controller, to remove a backup from the server and to remove all backups
from the server.

The role also allows to restore an IPA server locally and from the controller
and also to copy a backup from the controller to the server.

Comment 8 anuja 2020-12-01 10:44:23 UTC
[root@ansible ~]# rpm -qa ansible-freeipa
ansible-freeipa-0.3.0-2.el8.noarch
[root@ansible ~]# cat test.yaml 
---
- name: Playbook to backup IPA server
  hosts: ipaserver
  become: true

  roles:
  - role: ipabackup
    state: present

Fails with : 

TASK [ipabackup : Create backup] ********************************************************************************************************************************************
fatal: [master.ipadomain.test]: FAILED! => {"msg": "The task includes an option with an undefined variable. The error was: the inline if-expression on line 1 evaluated to false and no else section was defined.\n\nThe error appears to be in '/usr/share/ansible/roles/ipabackup/tasks/backup.yml': line 4, column 3, but may\nbe elsewhere in the file depending on the exact syntax problem.\n\nThe offending line appears to be:\n\n\n- name: Create backup\n  ^ here\n"}

PLAY RECAP ******************************************************************************************************************************************************************
master.ipadomain.test      : ok=5    changed=1    unreachable=0    failed=1    skipped=3    rescued=0    ignored=0

Comment 9 Thomas Woerner 2020-12-01 13:12:32 UTC
The ansible version in EL8 and Fedora is behaving different here. On EL8 is it needed to extend lines like '{{ "--online" if ipabackup_online | bool }}' to '{{ "--online" if ipabackup_online | bool else "" }}'. This is not needed by testing this with the same ansible version on Fedora though.

Comment 10 Thomas Woerner 2020-12-02 14:50:31 UTC
Here is the upstream PR that is fixing this:

https://github.com/freeipa/ansible-freeipa/pull/461

Comment 12 Varun Mylaraiah 2020-12-11 10:45:20 UTC
Verified
ansible-freeipa-0.3.1-1.el8.noarch


2020-12-11T07:49:54+0000 ansible_freeipa_tests/backup_restore.py::TestBackup::test_backup_present_locally 
2020-12-11T07:49:54+0000 -------------------------------- live log call ---------------------------------
2020-12-11T07:49:54+0000 [paramiko.transport] INFO Connected (version 2.0, client OpenSSH_8.0)
2020-12-11T07:49:55+0000 [paramiko.transport] INFO Authentication (publickey) successful!
2020-12-11T07:49:55+0000 [pytest_multihost.host.Host.master.ParamikoTransport] INFO RUN ['ipactl', 'status']
2020-12-11T07:49:55+0000 [paramiko.transport] INFO Connected (version 2.0, client OpenSSH_8.0)
2020-12-11T07:49:55+0000 [paramiko.transport] INFO Authentication (publickey) successful!
2020-12-11T07:49:55+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/master.hosts
2020-12-11T07:49:55+0000 [paramiko.transport.sftp] INFO [chan 0] Opened sftp connection (server version 3)
2020-12-11T07:49:55+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT install-server.yaml
2020-12-11T07:49:55+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/master.hosts', 'install-server.yaml']
2020-12-11T07:58:58+0000 [pytest_multihost.host.Host.master.ParamikoTransport] INFO RUN ['ipactl', 'status']
2020-12-11T07:59:00+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T07:59:00+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T07:59:00+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T07:59:59+0000 [pytest_multihost.host.Host.master.ParamikoTransport] INFO RUN ['find', '/var/lib/ipa/backup/', '-name', 'ipa-full.tar']
2020-12-11T08:00:00+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:00:00+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:00:00+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:00:04+0000 PASSED                                                                   [  3%]
2020-12-11T08:00:04+0000 ansible_freeipa_tests/backup_restore.py::TestBackup::test_backup_present_to_controller 
2020-12-11T08:00:04+0000 -------------------------------- live log call ---------------------------------
2020-12-11T08:00:04+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:00:04+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:00:04+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:01:09+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['find', '.', '-name', 'ipa-full.tar']
2020-12-11T08:01:09+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN rm -rf `find . -name "master.ipadomain.test*" -type d`
2020-12-11T08:01:09+0000 PASSED                                                                   [  6%]
2020-12-11T08:01:09+0000 ansible_freeipa_tests/backup_restore.py::TestBackup::test_backup_present_controller_keep_on_server 
2020-12-11T08:01:09+0000 -------------------------------- live log call ---------------------------------
2020-12-11T08:01:09+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:01:09+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:01:09+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:02:13+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['find', '.', '-name', 'ipa-full.tar']
2020-12-11T08:02:13+0000 [pytest_multihost.host.Host.master.ParamikoTransport] INFO RUN ['find', '/var/lib/ipa/backup/', '-name', 'ipa-full.tar']
2020-12-11T08:02:13+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:02:13+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:02:13+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:02:18+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN rm -rf `find . -name "master.ipadomain.test*" -type d`
2020-12-11T08:02:18+0000 PASSED                                                                   [  9%]
2020-12-11T08:02:18+0000 ansible_freeipa_tests/backup_restore.py::TestBackup::test_backup_copy_controller_ipabackup_name 
2020-12-11T08:02:18+0000 -------------------------------- live log call ---------------------------------
2020-12-11T08:02:18+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:02:18+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:02:18+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:03:19+0000 [pytest_multihost.host.Host.master.ParamikoTransport] INFO RUN ['ls', '/var/lib/ipa/backup/']
2020-12-11T08:03:19+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['find', '.', '-name', 'ipa-full.tar']
2020-12-11T08:03:19+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:03:19+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:03:19+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN sed -i 's/backupname/ipa-full-2020-12-11-03-03-16/' backuprestore_module.yml
2020-12-11T08:03:19+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:03:25+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['find', '.', '-name', 'ipa-full.tar']
2020-12-11T08:03:25+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:03:25+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:03:25+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:03:30+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN rm -rf `find . -name "master.ipadomain.test*" -type d`
2020-12-11T08:03:30+0000 PASSED                                                                   [ 12%]
2020-12-11T08:03:30+0000 ansible_freeipa_tests/backup_restore.py::TestBackup::test_backup_copy_controller_invalid_backup 
2020-12-11T08:03:30+0000 -------------------------------- live log call ---------------------------------
2020-12-11T08:03:30+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:03:30+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:03:30+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:03:33+0000 PASSED                                                                   [ 16%]
2020-12-11T08:03:33+0000 ansible_freeipa_tests/backup_restore.py::TestBackup::test_backup_controller_nonexisting_backup 
2020-12-11T08:03:33+0000 -------------------------------- live log call ---------------------------------
2020-12-11T08:03:33+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:03:33+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:03:33+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:03:37+0000 PASSED                                                                   [ 19%]
2020-12-11T08:03:37+0000 ansible_freeipa_tests/backup_restore.py::TestBackup::test_backup_copy_all_to_controller 
2020-12-11T08:03:37+0000 -------------------------------- live log call ---------------------------------
2020-12-11T08:03:37+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:03:37+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:03:37+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:04:37+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:05:38+0000 [pytest_multihost.host.Host.master.ParamikoTransport] INFO RUN ['ls', '/var/lib/ipa/backup/']
2020-12-11T08:05:38+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['find', '.', '-name', 'ipa-full.tar']
2020-12-11T08:05:38+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['find', '.', '-name', 'ipa-full.tar']
2020-12-11T08:05:38+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:05:38+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:05:38+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:05:48+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['find', '.', '-name', 'ipa-full.tar']
2020-12-11T08:05:48+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['find', '.', '-name', 'ipa-full.tar']
2020-12-11T08:05:48+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:05:48+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:05:48+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:05:53+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN rm -rf `find . -name "master.ipadomain.test*" -type d`
2020-12-11T08:05:53+0000 PASSED                                                                   [ 22%]
2020-12-11T08:05:53+0000 ansible_freeipa_tests/backup_restore.py::TestBackup::test_backup_absent_from_server 
2020-12-11T08:05:53+0000 -------------------------------- live log call ---------------------------------
2020-12-11T08:05:53+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:05:53+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:05:53+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:06:55+0000 [pytest_multihost.host.Host.master.ParamikoTransport] INFO RUN ['ls', '/var/lib/ipa/backup/']
2020-12-11T08:06:55+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:06:55+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:06:55+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN sed -i 's/backupname/ipa-full-2020-12-11-03-06-52/' backuprestore_module.yml
2020-12-11T08:06:55+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:07:00+0000 [pytest_multihost.host.Host.master.ParamikoTransport] INFO RUN ['find', '/var/lib/ipa/backup/', '-name', 'ipa-full.tar']
2020-12-11T08:07:00+0000 PASSED                                                                   [ 25%]
2020-12-11T08:07:00+0000 ansible_freeipa_tests/backup_restore.py::TestBackup::test_backup_absent_all_from_server 
2020-12-11T08:07:00+0000 -------------------------------- live log call ---------------------------------
2020-12-11T08:07:00+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:07:00+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:07:00+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:08:00+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:08:58+0000 [pytest_multihost.host.Host.master.ParamikoTransport] INFO RUN ['ls', '/var/lib/ipa/backup/']
2020-12-11T08:08:58+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:08:58+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:08:58+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:09:03+0000 [pytest_multihost.host.Host.master.ParamikoTransport] INFO RUN ['find', '/var/lib/ipa/backup/', '-name', 'ipa-full.tar']
2020-12-11T08:09:03+0000 [pytest_multihost.host.Host.master.ParamikoTransport] INFO RUN ['find', '/var/lib/ipa/backup/', '-name', 'ipa-full.tar']
2020-12-11T08:09:03+0000 PASSED                                                                   [ 29%]
2020-12-11T08:09:03+0000 ansible_freeipa_tests/backup_restore.py::TestBackup::test_backup_present_prefix 
2020-12-11T08:09:03+0000 -------------------------------- live log call ---------------------------------
2020-12-11T08:09:03+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:09:03+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:09:03+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:10:10+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['find', '.', '-name', 'ipa-full.tar']
2020-12-11T08:10:10+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:10:10+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:10:10+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:10:14+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN rm -rf `find . -name "controller_backup*" -type d`
2020-12-11T08:10:14+0000 PASSED                                                                   [ 32%]
2020-12-11T08:10:14+0000 ansible_freeipa_tests/backup_restore.py::TestBackup::test_backup_copy_controller_empty_backup 
2020-12-11T08:10:14+0000 -------------------------------- live log call ---------------------------------
2020-12-11T08:10:14+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:10:14+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:10:14+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:10:16+0000 PASSED                                                                   [ 35%]
2020-12-11T08:10:16+0000 ansible_freeipa_tests/backup_restore.py::TestBackup::test_backup_present_data 
2020-12-11T08:10:16+0000 -------------------------------- live log call ---------------------------------
2020-12-11T08:10:16+0000 [pytest_multihost.host.Host.master.ParamikoTransport] INFO RUN ['find', '/var/lib/ipa/backup/', '-name', 'ipa-data.tar']
2020-12-11T08:10:16+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:10:16+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:10:16+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:10:39+0000 [pytest_multihost.host.Host.master.ParamikoTransport] INFO RUN ['find', '/var/lib/ipa/backup/', '-name', 'ipa-data.tar']
2020-12-11T08:10:39+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:10:39+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:10:39+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:10:43+0000 PASSED                                                                   [ 38%]
2020-12-11T08:10:43+0000 ansible_freeipa_tests/backup_restore.py::TestBackup::test_backup_present_logs 
2020-12-11T08:10:43+0000 -------------------------------- live log call ---------------------------------
2020-12-11T08:10:43+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:10:43+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:10:43+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:11:45+0000 [pytest_multihost.host.Host.master.ParamikoTransport] INFO RUN ['ls', '/var/lib/ipa/backup/']
2020-12-11T08:11:45+0000 [pytest_multihost.host.Host.master.ParamikoTransport] INFO RUN ['tar', '--list', '--file=/var/lib/ipa/backup/ipa-full-2020-12-11-03-11-42/ipa-full.tar']
2020-12-11T08:11:46+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:11:46+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:11:46+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:11:50+0000 PASSED                                                                   [ 41%]
2020-12-11T08:11:50+0000 ansible_freeipa_tests/backup_restore.py::TestBackup::test_backup_present_online 
2020-12-11T08:11:50+0000 -------------------------------- live log call ---------------------------------
2020-12-11T08:11:50+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:11:50+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:11:50+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:12:00+0000 [pytest_multihost.host.Host.master.ParamikoTransport] INFO RUN ['find', '/var/lib/ipa/backup/', '-name', 'ipa-data.tar']
2020-12-11T08:12:00+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:12:00+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:12:00+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:12:04+0000 PASSED                                                                   [ 45%]
2020-12-11T08:12:04+0000 ansible_freeipa_tests/backup_restore.py::TestBackup::test_backup_present_logging_file 
2020-12-11T08:12:04+0000 -------------------------------- live log call ---------------------------------
2020-12-11T08:12:04+0000 [paramiko.transport.sftp] INFO [chan 16] Opened sftp connection (server version 3)
2020-12-11T08:12:04+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:12:04+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:12:04+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:12:28+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:12:28+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:12:28+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:12:33+0000 PASSED                                                                   [ 48%]
2020-12-11T08:12:33+0000 ansible_freeipa_tests/backup_restore.py::TestBackup::test_backup_present_disable_role_check 
2020-12-11T08:12:33+0000 -------------------------------- live log call ---------------------------------
2020-12-11T08:12:33+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:12:33+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:12:33+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:13:38+0000 [pytest_multihost.host.Host.master.ParamikoTransport] INFO RUN ['find', '/var/lib/ipa/backup/', '-name', 'ipa-full.tar']
2020-12-11T08:13:38+0000 [pytest_multihost.host.Host.master.ParamikoTransport] INFO RUN ['ls', '/var/lib/ipa/backup/']
2020-12-11T08:13:39+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:13:39+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:13:39+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:13:43+0000 PASSED                                                                   [ 51%]
2020-12-11T08:13:43+0000 ansible_freeipa_tests/backup_restore.py::TestBackup::test_backup_present_controller_path 
2020-12-11T08:13:43+0000 -------------------------------- live log call ---------------------------------
2020-12-11T08:13:43+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['mkdir', '/tmp/backupath']
2020-12-11T08:13:43+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:13:43+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:13:43+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:14:50+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ls', '/tmp/backupath']
2020-12-11T08:14:50+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:14:50+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:14:50+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:14:54+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['rm', '-rf', '/tmp/backupath']
2020-12-11T08:14:54+0000 PASSED                                                                   [ 54%]
2020-12-11T08:14:54+0000 ansible_freeipa_tests/backup_restore.py::TestBackup::test_backup_absent_multiple_from_server 
2020-12-11T08:14:54+0000 -------------------------------- live log call ---------------------------------
2020-12-11T08:14:54+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:14:54+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:14:54+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:15:57+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:17:01+0000 [pytest_multihost.host.Host.master.ParamikoTransport] INFO RUN ['ls', '/var/lib/ipa/backup/']
2020-12-11T08:17:01+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:17:01+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:17:01+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN sed -i 's/backup1/ipa-full-2020-12-11-03-15-54/' backuprestore_module.yml
2020-12-11T08:17:01+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN sed -i 's/backup2/ipa-full-2020-12-11-03-16-58/' backuprestore_module.yml
2020-12-11T08:17:01+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:17:06+0000 [pytest_multihost.host.Host.master.ParamikoTransport] INFO RUN ['find', '/var/lib/ipa/backup/', '-name', 'ipa-full.tar']
2020-12-11T08:17:06+0000 [pytest_multihost.host.Host.master.ParamikoTransport] INFO RUN ['find', '/var/lib/ipa/backup/', '-name', 'ipa-full.tar']
2020-12-11T08:17:06+0000 PASSED                                                                   [ 58%]
2020-12-11T08:17:06+0000 ansible_freeipa_tests/backup_restore.py::TestBackup::test_backup_copy_multiple_to_controller 
2020-12-11T08:17:06+0000 -------------------------------- live log call ---------------------------------
2020-12-11T08:17:06+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:17:06+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:17:06+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:18:06+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:19:08+0000 [pytest_multihost.host.Host.master.ParamikoTransport] INFO RUN ['ls', '/var/lib/ipa/backup/']
2020-12-11T08:19:08+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['find', '.', '-name', 'ipa-full.tar']
2020-12-11T08:19:08+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['find', '.', '-name', 'ipa-full.tar']
2020-12-11T08:19:08+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:19:08+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:19:08+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN sed -i 's/backup1/ipa-full-2020-12-11-03-18-03/' backuprestore_module.yml
2020-12-11T08:19:08+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN sed -i 's/backup2/ipa-full-2020-12-11-03-19-05/' backuprestore_module.yml
2020-12-11T08:19:08+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:19:16+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['find', '.', '-name', 'ipa-full.tar']
2020-12-11T08:19:16+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['find', '.', '-name', 'ipa-full.tar']
2020-12-11T08:19:16+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:19:16+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:19:16+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:19:21+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN rm -rf `find . -name "master.ipadomain.test*" -type d`
2020-12-11T08:19:21+0000 PASSED                                                                   [ 61%]
2020-12-11T08:19:21+0000 ansible_freeipa_tests/backup_restore.py::TestBackup::test_backup_present_with_gpg 
2020-12-11T08:19:21+0000 -------------------------------- live log call ---------------------------------
2020-12-11T08:19:21+0000 [pytest_multihost.host.Host.master.ParamikoTransport] INFO WRITE /root/key-input
2020-12-11T08:19:21+0000 [pytest_multihost.host.Host.master.ParamikoTransport] INFO RUN ['gpg2', '--batch', '--gen-key', '/root/key-input']
2020-12-11T08:19:22+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:19:22+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:19:22+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:20:23+0000 [pytest_multihost.host.Host.master.ParamikoTransport] INFO RUN ['find', '/var/lib/ipa/backup/', '-name', 'ipa-full.tar.gpg']
2020-12-11T08:20:24+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:20:24+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:20:24+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:20:28+0000 PASSED                                                                   [ 64%]
2020-12-11T08:20:28+0000 ansible_freeipa_tests/backup_restore.py::TestBackup::test_backup_present_with_gpg_keyring 
2020-12-11T08:20:28+0000 -------------------------------- live log call ---------------------------------
2020-12-11T08:20:28+0000 [pytest_multihost.host.Host.master.ParamikoTransport] INFO WRITE /root/key-input
2020-12-11T08:20:28+0000 [pytest_multihost.host.Host.master.ParamikoTransport] INFO RUN ['gpg2', '--batch', '--gen-key', '/root/key-input']
2020-12-11T08:20:28+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:20:28+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:20:28+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:21:32+0000 [pytest_multihost.host.Host.master.ParamikoTransport] INFO RUN ['find', '/var/lib/ipa/backup/', '-name', 'ipa-full.tar.gpg']
2020-12-11T08:21:32+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:21:32+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:21:32+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:21:36+0000 PASSED                                                                   [ 67%]
2020-12-11T08:21:36+0000 ansible_freeipa_tests/backup_restore.py::TestBackup::test_backup_copy_from_controller 
2020-12-11T08:21:36+0000 -------------------------------- live log call ---------------------------------
2020-12-11T08:21:36+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:21:36+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:21:36+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:21:40+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:21:40+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:21:40+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:22:47+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN find . -name "master.ipadomain.test*" -type d
2020-12-11T08:22:47+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:22:47+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:22:47+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN sed -i 's/backupname/master.ipadomain.test_ipa-full-2020-12-11-03-22-40/' backuprestore_module.yml
2020-12-11T08:22:47+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:22:52+0000 [pytest_multihost.host.Host.master.ParamikoTransport] INFO RUN ['find', '/var/lib/ipa/backup/', '-name', 'ipa-full.tar']
2020-12-11T08:22:53+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:22:53+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:22:53+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:22:57+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN rm -rf `find . -name "master.ipadomain.test*" -type d`
2020-12-11T08:22:57+0000 PASSED                                                                   [ 70%]
2020-12-11T08:22:57+0000 ansible_freeipa_tests/backup_restore.py::TestRestore::test_restore_locally 
2020-12-11T08:22:57+0000 -------------------------------- live log call ---------------------------------
2020-12-11T08:22:57+0000 [pytest_multihost.host.Host.master.ParamikoTransport] INFO RUN ['ipactl', 'status']
2020-12-11T08:22:59+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:22:59+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:22:59+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:23:03+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:23:03+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:23:03+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:24:03+0000 [pytest_multihost.host.Host.master.ParamikoTransport] INFO RUN ['ls', '/var/lib/ipa/backup/']
2020-12-11T08:24:03+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:24:03+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:24:03+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN sed -i 's/backupname/ipa-full-2020-12-11-03-24-00/' backuprestore_module.yml
2020-12-11T08:24:03+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:26:33+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:26:33+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:26:33+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:26:38+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN rm -rf `find . -name "master.ipadomain.test*" -type d`
2020-12-11T08:26:38+0000 PASSED                                                                   [ 74%]
2020-12-11T08:26:38+0000 ansible_freeipa_tests/backup_restore.py::TestRestore::test_restore_from_controller 
2020-12-11T08:26:38+0000 -------------------------------- live log call ---------------------------------
2020-12-11T08:26:38+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:26:38+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:26:38+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:26:41+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:26:42+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:26:42+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:27:46+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN find . -name "master.ipadomain.test*" -type d
2020-12-11T08:27:46+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:27:46+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:27:46+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN sed -i 's/backupname/master.ipadomain.test_ipa-full-2020-12-11-03-27-39/' backuprestore_module.yml
2020-12-11T08:27:46+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:30:28+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:30:28+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:30:28+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:30:32+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN rm -rf `find . -name "master.ipadomain.test*" -type d`
2020-12-11T08:30:32+0000 PASSED                                                                   [ 77%]
2020-12-11T08:30:32+0000 ansible_freeipa_tests/backup_restore.py::TestRestore::test_restore_data 
2020-12-11T08:30:32+0000 -------------------------------- live log call ---------------------------------
2020-12-11T08:30:32+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:30:33+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:30:33+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:30:36+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:30:36+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:30:36+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:30:59+0000 [pytest_multihost.host.Host.master.ParamikoTransport] INFO RUN ['ls', '/var/lib/ipa/backup/']
2020-12-11T08:30:59+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:30:59+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:30:59+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN sed -i 's/backupname/ipa-data-2020-12-11-03-30-56/' backuprestore_module.yml
2020-12-11T08:30:59+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:31:30+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:31:30+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:31:30+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:31:34+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN rm -rf `find . -name "master.ipadomain.test*" -type d`
2020-12-11T08:31:34+0000 PASSED                                                                   [ 80%]
2020-12-11T08:31:34+0000 ansible_freeipa_tests/backup_restore.py::TestRestore::test_restore_online 
2020-12-11T08:31:34+0000 -------------------------------- live log call ---------------------------------
2020-12-11T08:31:34+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:31:34+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:31:34+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:31:37+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:31:37+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:31:37+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:31:50+0000 [pytest_multihost.host.Host.master.ParamikoTransport] INFO RUN ['ls', '/var/lib/ipa/backup/']
2020-12-11T08:31:50+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:31:50+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:31:50+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN sed -i 's/backupname/ipa-data-2020-12-11-03-31-48/' backuprestore_module.yml
2020-12-11T08:31:50+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:32:12+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:32:12+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:32:12+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:32:17+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN rm -rf `find . -name "master.ipadomain.test*" -type d`
2020-12-11T08:32:17+0000 PASSED                                                                   [ 83%]
2020-12-11T08:32:17+0000 ansible_freeipa_tests/backup_restore.py::TestRestore::test_restore_with_instance 
2020-12-11T08:32:17+0000 -------------------------------- live log call ---------------------------------
2020-12-11T08:32:17+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:32:17+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:32:17+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:32:20+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:32:20+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:32:20+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:32:45+0000 [pytest_multihost.host.Host.master.ParamikoTransport] INFO RUN ['ls', '/var/lib/ipa/backup/']
2020-12-11T08:32:45+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:32:45+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:32:45+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN sed -i 's/backupname/ipa-data-2020-12-11-03-32-42/' backuprestore_module.yml
2020-12-11T08:32:45+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN sed -i 's/instancename/IPADOMAIN-TEST/' backuprestore_module.yml
2020-12-11T08:32:45+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:33:16+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:33:16+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:33:16+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:33:20+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN rm -rf `find . -name "master.ipadomain.test*" -type d`
2020-12-11T08:33:20+0000 PASSED                                                                   [ 87%]
2020-12-11T08:33:20+0000 ansible_freeipa_tests/backup_restore.py::TestRestore::test_restore_with_backend 
2020-12-11T08:33:20+0000 -------------------------------- live log call ---------------------------------
2020-12-11T08:33:20+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:33:20+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:33:20+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:33:24+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:33:24+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:33:24+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:33:50+0000 [pytest_multihost.host.Host.master.ParamikoTransport] INFO RUN ['ls', '/var/lib/ipa/backup/']
2020-12-11T08:33:50+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:33:50+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:33:50+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN sed -i 's/backupname/ipa-data-2020-12-11-03-33-47/' backuprestore_module.yml
2020-12-11T08:33:50+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:34:18+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:34:18+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:34:18+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:34:23+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN rm -rf `find . -name "master.ipadomain.test*" -type d`
2020-12-11T08:34:23+0000 PASSED                                                                   [ 90%]
2020-12-11T08:34:23+0000 ansible_freeipa_tests/backup_restore.py::TestRestore::test_restore_with_ipabackup_no_logs 
2020-12-11T08:34:23+0000 -------------------------------- live log call ---------------------------------
2020-12-11T08:34:23+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:34:23+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:34:23+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:34:26+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:34:26+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:34:26+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:34:50+0000 [pytest_multihost.host.Host.master.ParamikoTransport] INFO RUN ['ls', '/var/lib/ipa/backup/']
2020-12-11T08:34:50+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:34:50+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:34:50+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN sed -i 's/backupname/ipa-data-2020-12-11-03-34-48/' backuprestore_module.yml
2020-12-11T08:34:50+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:35:21+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:35:21+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:35:21+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:35:26+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN rm -rf `find . -name "master.ipadomain.test*" -type d`
2020-12-11T08:35:26+0000 PASSED                                                                   [ 93%]
2020-12-11T08:35:26+0000 ansible_freeipa_tests/backup_restore.py::TestRestore::test_restore_with_logging_to_file 
2020-12-11T08:35:26+0000 -------------------------------- live log call ---------------------------------
2020-12-11T08:35:26+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:35:26+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:35:26+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:35:30+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:35:30+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:35:30+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:35:55+0000 [pytest_multihost.host.Host.master.ParamikoTransport] INFO RUN ['ls', '/var/lib/ipa/backup/']
2020-12-11T08:35:55+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:35:55+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:35:55+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN sed -i 's/backupname/ipa-data-2020-12-11-03-35-53/' backuprestore_module.yml
2020-12-11T08:35:55+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:36:27+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:36:27+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:36:27+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:36:31+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN rm -rf `find . -name "master.ipadomain.test*" -type d`
2020-12-11T08:36:31+0000 PASSED                                                                   [ 96%]
2020-12-11T08:36:31+0000 ansible_freeipa_tests/backup_restore.py::TestRestore::test_restore_with_ipabackup_controller_path 
2020-12-11T08:36:31+0000 -------------------------------- live log call ---------------------------------
2020-12-11T08:36:31+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['mkdir', '/tmp/backupath']
2020-12-11T08:36:31+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:36:31+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:36:31+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:37:37+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ls', '/tmp/backupath']
2020-12-11T08:37:37+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:37:37+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:37:37+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN sed -i 's/backupname/master.ipadomain.test_ipa-full-2020-12-11-03-37-30/' backuprestore_module.yml
2020-12-11T08:37:37+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:40:13+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO WRITE inventory/backuprestore.hosts
2020-12-11T08:40:13+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO PUT backuprestore_module.yml
2020-12-11T08:40:13+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN ['ansible-playbook', '--ssh-extra-args="-o StrictHostKeyChecking=no"', '-vv', '-i', 'inventory/backuprestore.hosts', 'backuprestore_module.yml']
2020-12-11T08:40:17+0000 [pytest_multihost.host.Host.ansible.ParamikoTransport] INFO RUN rm -rf `find . -name "master.ipadomain.test*" -type d`
2020-12-11T08:40:17+0000 PASSED                                                                   [100%]
2020-12-11T08:40:17+0000 
2020-12-11T08:40:17+0000 ----------- generated xml file: /home/jenkins/tews/trigger/junit.xml -----------
2020-12-11T08:40:17+0000 ------ generated html file: file:///home/jenkins/tews/trigger/report.html ------
2020-12-11T08:40:17+0000 ========================= 31 passed in 3022.77 seconds =========================

Based on the test result, marking the bug VERIFIED.

Comment 14 errata-xmlrpc 2021-05-18 15:51:41 UTC
Since the problem described in this bug report should be
resolved in a recent advisory, it has been closed with a
resolution of ERRATA.

For information on the advisory (ansible-freeipa bug fix and enhancement update), and where to find the updated
files, follow the link below.

If the solution does not work for you, open a new bug report.

https://access.redhat.com/errata/RHEA-2021:1860


Note You need to log in before you can comment on or make changes to this bug.