避免在 apt-cacher-ng 服务器上使用 -dbg_version 软件包

避免在 apt-cacher-ng 服务器上使用 -dbg_version 软件包

介绍:我们创建了一个apt-cacher-ng服务器来为安装了 Ubuntu 14.04 的用户提供缓存的软件包。结合缓存的软件包,我们使用该PrecacheFor参数每周“镜像”一些 Ubuntu 更新 uri。以下正则表达式将创建所有更新存储库的镜像:

PrecacheFor: uburep/dists/trusty-updates/*/binary-amd64/Packages*

但是,它会缓存调试包,这些包非常臃肿并且没有用处。示例 html 日志输出:

Downloading uburep/pool/main/c/ceph/librbd1-dbg_0.80.5-0ubuntu0.14.04.1_amd64.deb...
<i>(6234KiB)</i>

Downloading uburep/pool/main/libr/libreoffice/libreoffice-base_4.2.6.3-0ubuntu1_amd64.deb...
<i>(1380KiB)</i>

Downloading uburep/pool/main/libr/libreoffice/libreoffice-base-core_4.2.6.3-0ubuntu1_amd64.deb...
<i>(715KiB)</i>

Downloading uburep/pool/main/libr/libreoffice/libreoffice-base-drivers_4.2.6.3-0ubuntu1_amd64.deb...
<i>(515KiB)</i>

Downloading uburep/pool/main/libr/libreoffice/libreoffice-calc_4.2.6.3-0ubuntu1_amd64.deb...
<i>(5779KiB)</i>

Downloading uburep/pool/main/libr/libreoffice/libreoffice-common_4.2.6.3-0ubuntu1_all.deb...
<i>(19345KiB)</i>

Downloading uburep/pool/main/libr/libreoffice/libreoffice-core_4.2.6.3-0ubuntu1_amd64.deb...
<i>(27243KiB)</i>

Downloading uburep/pool/main/libr/libreoffice/libreoffice-dbg_4.2.6.3-0ubuntu1_amd64.deb...

问题:有没有办法使用 uri 正则表达式的任何选项或使用 uri 正则表达式-dbg_来排除子字符串包的下载?apt-cacher-ng

答案1

尝试查看DontCacheDontCacheRequestedDontCacheResolved指令。例如,类似:

DontCache (^|.*?/).+?-dbg_[0-9]

文档说这会阻止文件被下载和缓存,但它没有阐明DontCache和之间的交互PreCacheFor

相关内容