mirror of
https://github.com/tuna/tunasync-scripts.git
synced 2025-04-20 04:12:42 +00:00
print package count
This commit is contained in:
parent
eb26bf3f4f
commit
518d14334b
@ -168,6 +168,7 @@ def apt_mirror(base_url: str, dist: str, repo: str, arch: str, dest_base_dir: Pa
|
|||||||
# Download packages
|
# Download packages
|
||||||
err = 0
|
err = 0
|
||||||
deb_count = 0
|
deb_count = 0
|
||||||
|
deb_size = 0
|
||||||
for pkg in pkgidx_content.split('\n\n'):
|
for pkg in pkgidx_content.split('\n\n'):
|
||||||
if len(pkg) < 10: # ignore blanks
|
if len(pkg) < 10: # ignore blanks
|
||||||
continue
|
continue
|
||||||
@ -209,6 +210,7 @@ def apt_mirror(base_url: str, dist: str, repo: str, arch: str, dest_base_dir: Pa
|
|||||||
print(f"Failed to download {dest_filename}")
|
print(f"Failed to download {dest_filename}")
|
||||||
err = 1
|
err = 1
|
||||||
deb_count += 1
|
deb_count += 1
|
||||||
|
deb_size += pkg_size
|
||||||
# if deb_count == 2:
|
# if deb_count == 2:
|
||||||
# break
|
# break
|
||||||
try:
|
try:
|
||||||
@ -224,6 +226,7 @@ def apt_mirror(base_url: str, dist: str, repo: str, arch: str, dest_base_dir: Pa
|
|||||||
return 1
|
return 1
|
||||||
|
|
||||||
print(f"Mirroring {base_url} {dist}, {repo}, {arch} done!")
|
print(f"Mirroring {base_url} {dist}, {repo}, {arch} done!")
|
||||||
|
print(f"{deb_count} packages, {deb_size} bytes in total")
|
||||||
return err
|
return err
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
Loading…
x
Reference in New Issue
Block a user