我有几十台有空隙的机器,我想把非常具体的补丁上传到上面。我的解决方案是创建一个私有存储库,并让每台机器更新它们的/etc/apt/sources.list文件。我有一个deb包的列表,我想要放在存储库中。
我正在使用本指南使用repropro创建一个私有存储库HOWTO: Create debian repositories with reprepro。
当我尝试导入一个deb包时,我得到一个错误:
$ reprepro -b repo/ includedeb yakkety python3_3.5.1-4_amd64.deb
Skipping inclusion of 'python3' '3.5.1-4' in 'yakkety|main|amd64', as
it has already '3.5.1-4'.我不确定是什么导致了这个错误。有什么见解吗?
发布于 2017-12-08 19:33:44
在您的发行版中已经存在具有相同版本的包。使用reprepro ls python3检查它
https://stackoverflow.com/questions/44705006
复制相似问题