home · contact · privacy
Minor improvements.
authorChristian Heller <c.heller@plomlompom.de>
Tue, 4 Mar 2025 03:52:30 +0000 (04:52 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Tue, 4 Mar 2025 03:52:30 +0000 (04:52 +0100)
testing/aptmark/user
testing/scripts/setup_secrets_user.sh

index 5557251f194b42ccde7d5d6abe26819ba84c0817..2bd0811f6450e04a6fd9c72e367bf79c52ae4d47 100644 (file)
@@ -11,4 +11,6 @@ procps
 openssh-client
 # for syncing
 borgbackup
+# for my own scripts to run
+python3-venv
 #
index e4209b4be95f1e4ee8ce08ec59fcef65a24fee18..07b60cd5c69f694d3b6603060996b62dbfd66b93 100755 (executable)
@@ -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