Add comments about URIs apt fetches, reinstate pathprefix.
diff --git a/cicd/pipelines/tasks/task_updatepackages.jenkins b/cicd/pipelines/tasks/task_updatepackages.jenkins
index 0d7ef36..c802f20 100644
--- a/cicd/pipelines/tasks/task_updatepackages.jenkins
+++ b/cicd/pipelines/tasks/task_updatepackages.jenkins
@@ -51,12 +51,26 @@
                                       selector: lastSuccessful())
                     }
 
+/*
+'http://apt.mendel-linux.org/dists/unstable/InRelease' apt.mendel-linux.org_dists_unstable_InRelease 0 
+'http://apt.mendel-linux.org/dists/unstable/core/binary-arm64/Packages.xz' apt.mendel-linux.org_dists_unstable_core_binary-arm64_Pac
+kages 0                                                                                                                            
+'http://apt.mendel-linux.org/dists/unstable/core/binary-all/Packages.xz' apt.mendel-linux.org_dists_unstable_core_binary-all_Package
+s 0                                                                                                                                
+'http://apt.mendel-linux.org/dists/unstable/core/i18n/Translation-en.xz' apt.mendel-linux.org_dists_unstable_core_i18n_Translation-e
+n 0                                                                                                                                
+*/
+
                     dir('mendel') {
                         sh """
                            mkdir -p dists/unstable/core/binary-arm64
                            apt-ftparchive packages pool/core > dists/unstable/core/binary-arm64/Packages
                            gzip -9c dists/unstable/core/binary-arm64/Packages >dists/unstable/core/binary-arm64/Packages.gz
 
+                           mkdir -p dists/unstable/core/binary-all
+                           apt-ftparchive packages pool/core > dists/unstable/core/binary-all/Packages
+                           gzip -9c dists/unstable/core/binary-all/Packages >dists/unstable/core/binary-all/Packages.gz
+
                            mkdir -p dists/unstable/core/source
                            apt-ftparchive sources pool/core  > dists/unstable/core/source/Sources
                            gzip -9c dists/unstable/core/source/Sources >dists/unstable/core/binary-arm64/Sources.gz
@@ -73,6 +87,7 @@
                     googleStorageUpload(bucket: 'gs://mendel-linux-apt/',
                                         credentialsId: 'mendel-linux-cloud-infra',
                                         pattern: 'mendel/**',
+                                        pathPrefix: 'mendel/',
                                         sharedPublicly: true)
                 }
             }