Origin、ラベルなどがないリポジトリの Unattended-Upgrade::Origins-Pattern

Origin、ラベルなどがないリポジトリの Unattended-Upgrade::Origins-Pattern

unattendedupgradesDebian 10 Nextcloud サーバー上で Collabora Office を最新の状態に保つために使用したいと思います。

しかしリポジトリのInReleaseファイル行内で使用するメタデータは含まれませんUnattended-Upgrade::Origins-Pattern。ファイル ハッシュのみが含まれているため、apt-cache policy返されるのは次のようになります。

 500 https://www.collaboraoffice.com/repos/CollaboraOnline/CODE-debian10 ./ Packages
     release c=

このリポジトリのパッケージを自動的に更新するように指定するにはどうすればよいですか?

答え1

内容のコメントより/etc/apt/apt.conf.d/50unattended-upgrades:

// Lines below have the format format is "keyword=value,...".  A
// package will be upgraded only if the values in its metadata match
// all the supplied keywords in a line.  (In other words, omitted
// keywords are wild cards.) The keywords originate from the Release
// file, but several aliases are accepted.  The accepted keywords are:
//   a,archive,suite (eg, "stable")
//   c,component     (eg, "main", "contrib", "non-free")
//   l,label         (eg, "Debian", "Debian-Security")
//   o,origin        (eg, "Debian", "Unofficial Multimedia Packages")
//   n,codename      (eg, "jessie", "jessie-updates")
//     site          (eg, "http.debian.net")

これを区別するには、サイトsite関連する設定にキーワードを追加して、次のようにブロックを編集50unattended-upgradesおよび変更しますUnattended-Upgrade::Origins-Pattern

Unattended-Upgrade::Origins-Pattern {
        "origin=Debian,codename=${distro_codename},label=Debian";
        "origin=Debian,codename=${distro_codename},label=Debian-Security";
        "site=www.collaboraoffice.com";
}

関連情報