diff --git a/test/integration/targets/apt/tasks/downgrade.yml b/test/integration/targets/apt/tasks/downgrade.yml index e80b099380b..0d111605b99 100644 --- a/test/integration/targets/apt/tasks/downgrade.yml +++ b/test/integration/targets/apt/tasks/downgrade.yml @@ -1,6 +1,10 @@ - block: - name: Disable ubuntu repos so system packages are not upgraded and do not change testing env - command: mv /etc/apt/sources.list /etc/apt/sources.list.backup + shell: | + find /etc/apt/sources.list* \ + \( -name \*.list -or -name \*.sources \) \ + -and -not -name file_tmp_repo.list \ + | xargs -I{} mv {} {}.backup - name: install latest foo apt: @@ -74,4 +78,7 @@ autoclean: yes - name: Restore ubuntu repos - command: mv /etc/apt/sources.list.backup /etc/apt/sources.list + shell: | + find /etc/apt/sources.list* -name \*.backup \ + | sed 's/\.backup$//' \ + | xargs -I{} mv {}.backup {} diff --git a/test/integration/targets/apt/tasks/repo.yml b/test/integration/targets/apt/tasks/repo.yml index 70e2e6a286c..336a1f6f348 100644 --- a/test/integration/targets/apt/tasks/repo.yml +++ b/test/integration/targets/apt/tasks/repo.yml @@ -195,7 +195,11 @@ # https://github.com/ansible/ansible/issues/35900 - block: - name: Disable ubuntu repos so system packages are not upgraded and do not change testing env - command: mv /etc/apt/sources.list /etc/apt/sources.list.backup + shell: | + find /etc/apt/sources.list* \ + \( -name \*.list -or -name \*.sources \) \ + -and -not -name file_tmp_repo.list \ + | xargs -I{} mv {} {}.backup - name: Install foobar, installs foo as a dependency apt: @@ -262,13 +266,20 @@ autoclean: yes - name: Restore ubuntu repos - command: mv /etc/apt/sources.list.backup /etc/apt/sources.list + shell: | + find /etc/apt/sources.list* -name \*.backup \ + | sed 's/\.backup$//' \ + | xargs -I{} mv {}.backup {} # https://github.com/ansible/ansible/issues/26298 - block: - name: Disable ubuntu repos so system packages are not upgraded and do not change testing env - command: mv /etc/apt/sources.list /etc/apt/sources.list.backup + shell: | + find /etc/apt/sources.list* \ + \( -name \*.list -or -name \*.sources \) \ + -and -not -name file_tmp_repo.list \ + | xargs -I{} mv {} {}.backup - name: Install foobar, installs foo as a dependency apt: @@ -349,7 +360,10 @@ autoclean: yes - name: Restore ubuntu repos - command: mv /etc/apt/sources.list.backup /etc/apt/sources.list + shell: | + find /etc/apt/sources.list* -name \*.backup \ + | sed 's/\.backup$//' \ + | xargs -I{} mv {}.backup {} - name: Downgrades import_tasks: "downgrade.yml" diff --git a/test/integration/targets/apt/tasks/upgrade.yml b/test/integration/targets/apt/tasks/upgrade.yml index 719d4e62e95..037a4000b8e 100644 --- a/test/integration/targets/apt/tasks/upgrade.yml +++ b/test/integration/targets/apt/tasks/upgrade.yml @@ -1,6 +1,10 @@ - block: - name: Disable ubuntu repos so system packages are not upgraded and do not change testing env - command: mv /etc/apt/sources.list /etc/apt/sources.list.backup + shell: | + find /etc/apt/sources.list* \ + \( -name \*.list -or -name \*.sources \) \ + -and -not -name file_tmp_repo.list \ + | xargs -I{} mv {} {}.backup - name: install foo-1.0.0 apt: @@ -61,4 +65,7 @@ autoclean: yes - name: Restore ubuntu repos - command: mv /etc/apt/sources.list.backup /etc/apt/sources.list + shell: | + find /etc/apt/sources.list* -name \*.backup \ + | sed 's/\.backup$//' \ + | xargs -I{} mv {}.backup {}