From ac643863cf061b6b60d365fc1fd07a944da3e8b2 Mon Sep 17 00:00:00 2001
From: Christian Heller <c.heller@plomlompom.de>
Date: Tue, 4 Mar 2025 04:52:30 +0100
Subject: [PATCH] Minor improvements.

---
 testing/aptmark/user                  | 2 ++
 testing/scripts/setup_secrets_user.sh | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/testing/aptmark/user b/testing/aptmark/user
index 5557251..2bd0811 100644
--- a/testing/aptmark/user
+++ b/testing/aptmark/user
@@ -11,4 +11,6 @@ procps
 openssh-client
 # for syncing
 borgbackup
+# for my own scripts to run
+python3-venv
 #
diff --git a/testing/scripts/setup_secrets_user.sh b/testing/scripts/setup_secrets_user.sh
index e4209b4..07b60cd 100755
--- a/testing/scripts/setup_secrets_user.sh
+++ b/testing/scripts/setup_secrets_user.sh
@@ -28,5 +28,5 @@ ssh-keyscan -H "${REPOS_SITE_DOMAIN}" >> "${PATH_USER_SSH}/known_hosts"
 mkdir "${PATH_REPOS}"
 cd "${PATH_REPOS}"
 ssh ${REPOS_SITE_LOGIN} "cd $REMOTE_PATH_REPOS && ls -1" | while read REPO_NAME; do
-    git clone "${REPOS_SITE_LOGIN}:${REMOTE_PATH_REPOS}/${REPO_NAME}"
+    git clone --recurse "${REPOS_SITE_LOGIN}:${REMOTE_PATH_REPOS}/${REPO_NAME}"
 done
-- 
2.30.2