From 402f9be2d5a1c94c7df4da47ea2d6a378d8158dd Mon Sep 17 00:00:00 2001 From: "James E. Blair" Date: Wed, 9 Jul 2025 09:41:28 -0700 Subject: [PATCH] Disable recursive git clone for ensure-skopeo This is not necessary, so disable it to avoid potential problems. Change-Id: I8d5d7b8111b9c167a737516aa559485a73962a9b --- roles/ensure-skopeo/tasks/Debian.yaml | 1 + roles/ensure-skopeo/tasks/Ubuntu-22.04.yaml | 1 + roles/ensure-skopeo/tasks/Ubuntu-24.04.yaml | 1 + 3 files changed, 3 insertions(+) diff --git a/roles/ensure-skopeo/tasks/Debian.yaml b/roles/ensure-skopeo/tasks/Debian.yaml index 246251ef4..15cf03288 100644 --- a/roles/ensure-skopeo/tasks/Debian.yaml +++ b/roles/ensure-skopeo/tasks/Debian.yaml @@ -29,6 +29,7 @@ repo: https://github.com/containers/skopeo dest: '{{ ansible_user_dir }}/skopeo' version: '{{ ensure_skopeo_install_from_upstream_version }}' + recursive: false - name: Build skopeo command: 'make' diff --git a/roles/ensure-skopeo/tasks/Ubuntu-22.04.yaml b/roles/ensure-skopeo/tasks/Ubuntu-22.04.yaml index a95fd24c4..da5e27724 100644 --- a/roles/ensure-skopeo/tasks/Ubuntu-22.04.yaml +++ b/roles/ensure-skopeo/tasks/Ubuntu-22.04.yaml @@ -29,6 +29,7 @@ repo: https://github.com/containers/skopeo dest: '{{ ansible_user_dir }}/skopeo' version: '{{ ensure_skopeo_install_from_upstream_version }}' + recursive: false - name: Build skopeo command: 'make bin/skopeo' diff --git a/roles/ensure-skopeo/tasks/Ubuntu-24.04.yaml b/roles/ensure-skopeo/tasks/Ubuntu-24.04.yaml index a95fd24c4..da5e27724 100644 --- a/roles/ensure-skopeo/tasks/Ubuntu-24.04.yaml +++ b/roles/ensure-skopeo/tasks/Ubuntu-24.04.yaml @@ -29,6 +29,7 @@ repo: https://github.com/containers/skopeo dest: '{{ ansible_user_dir }}/skopeo' version: '{{ ensure_skopeo_install_from_upstream_version }}' + recursive: false - name: Build skopeo command: 'make bin/skopeo'