无人值守升级忽略优先级

无人值守升级忽略优先级

我似乎unattended-upgrades没有遵循 中设置的优先级/etc/apt/preferences

我正在维护一个 Debian 文件服务器,其中设置了无人值守升级。rclone当前已安装来自测试的版本。当使用aptrclone 进行更新时,会从测试中进行更新。但是,unattended-upgrades在测试存储库中运行更新时将被忽略。

无人值守升级是否会出现这种行为?我希望 rclone 能够跟踪测试存储库中的更新。输出和系统设置的详细信息总结如下。

运行的输出unattended-upgrade --dry-run --debug是:

Enabled logging to syslog via daemon facility
Initial blacklisted packages: 
Initial whitelisted packages: 
Starting unattended upgrades script
Allowed origins are: ['origin=Debian,codename=stretch,archive=stable',
  'origin=Debian,codename=stretch,archive=testing',
  'origin=Debian,codename=stretch,label=Debian-Security',
  'origin=Debian Backports,codename=stretch-backports,label=Debian Backports',
  'origin=Syncthing,archive=syncthing,codename=debian,label=Syncthing,component=stable',
  'origin=www.geogebra.net,codename=stable,component=main']
ignoring ver 'rclone=1.45-2+b21' with priority < 0
adjusting candidate version: 'rclone=1.35-1+b3'
pkgs that look like they should be upgraded: 
Fetched 0 B in 0s (0 B/s)                                                       
fetch.run() result: 0
blacklist: []
whitelist: []
No packages found that can be upgraded unattended and no pending auto-removals

首选项文件/etc/apt/preferences是:

Package: *
Pin: release l=Debian-Security
Pin-Priority: 1000

Package: rclone
Pin: release a=testing
Pin-Priority: 950

Package: *
Pin: release a=stable
Pin-Priority: 900

Package: *
Pin: release a=stretch-backports
Pin-Priority: 800

Package: *
Pin: release a=testing
Pin-Priority: -1

/etc/apt/sources.list文件是:

deb http://ftp.uk.debian.org/debian/ stretch main non-free contrib
deb-src http://ftp.uk.debian.org/debian/ stretch main non-free contrib

deb http://security.debian.org/debian-security stretch/updates main contrib non-free
deb-src http://security.debian.org/debian-security stretch/updates main contrib non-free

# stretch-updates, previously known as 'volatile'
deb http://ftp.uk.debian.org/debian/ stretch-updates main contrib non-free
deb-src http://ftp.uk.debian.org/debian/ stretch-updates main contrib non-free

# stretch-backports, previously on backports.debian.org
deb http://ftp.uk.debian.org/debian/ stretch-backports main contrib non-free
deb-src http://ftp.uk.debian.org/debian/ stretch-backports main contrib non-free

# testing 
deb http://ftp.uk.debian.org/debian/ testing main contrib non-free
deb-src http://ftp.uk.debian.org/debian/ testing main contrib non-free

中的起源/etc/apt/apt.conf.d/50unattended-upgrades配置如下:

Unattended-Upgrade::Origins-Pattern {
  "origin=${distro_id},codename=${distro_codename},archive=stable";
  "origin=${distro_id},codename=${distro_codename},archive=testing";
  "origin=${distro_id},codename=${distro_codename},label=Debian-Security";
  "origin=${distro_id} Backports,codename=${distro_codename}-backports,label=Debian Backports";
  "origin=Syncthing,archive=syncthing,codename=debian,label=Syncthing,component=stable";
  "origin=www.geogebra.net,codename=stable,component=main";
};

答案1

您需要设置适当的代号进行测试:

Unattended-Upgrade::Origins-Pattern {
    "origin=${distro_id},codename=${distro_codename},archive=stable";
    "origin=${distro_id},codename=buster,archive=testing";
    "origin=${distro_id},codename=${distro_codename},label=Debian-Security";
    "origin=${distro_id} Backports,codename=${distro_codename}-backports,label=Debian Backports";
    "origin=Syncthing,archive=syncthing,codename=debian,label=Syncthing,component=stable";
    "origin=www.geogebra.net,codename=stable,component=main";

};

相关内容