Skip to content

Commit 38ddbef

Browse files
pluhmenpatrick-stephens
authored andcommitted
bug-fix: Set correct and unique repo meta data
When using unattended-upgrades at least the origin meta data in the release file shoulb be unique across all registered package repos in addition it's also good to set the label to something that clearly identifies the software source. With this commit the published Release file will look like this: Origin: packages.fluentbit.io Label: fluent-bit Suite: bookworm Codename: bookworm Signed-off-by: pluhmen <[email protected]>
1 parent 71a758f commit 38ddbef

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

packaging/update-apt-repo.sh

+9-4
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,16 @@ APTLY_REPO_NAME="debify-$CODENAME"
3232
APTLY_ROOTDIR=$(mktemp -d)
3333
APTLY_CONFIG=$(mktemp)
3434

35-
# The origin and label fields seem to cover the base directory for the repo and codename.
36-
# The docs seems to suggest these fields are optional and free-form: https://wiki.debian.org/DebianRepository/Format#Origin
35+
# The origin and label fields are free text fields that should indicate the heritage of the package repository.
36+
# They are used in an unattend-upgrade scenario and therefore they should be unique for each package source.
37+
# Further information can be found here https://wiki.debian.org/DebianRepository/Format & https://wiki.debian.org/UnattendedUpgrades
38+
# For fluent-bit a valid apt config entry for unattended upgrades is
39+
# Unattended-Upgrade::Origins-Pattern {
40+
# "origin=packages.fluentbit.io,codename=${distro_codename},label=fluent-bit"
41+
# }
3742
# They are security checks to verify if they have changed so we match the legacy server.
38-
APTLY_ORIGIN=". $CODENAME"
39-
APTLY_LABEL=". $CODENAME"
43+
APTLY_ORIGIN="packages.fluentbit.io"
44+
APTLY_LABEL="fluent-bit"
4045
if [[ "$DEB_REPO" == "debian/bullseye" ]]; then
4146
# For Bullseye, the legacy server had a slightly different setup we try to reproduce here
4247
APTLY_ORIGIN="bullseye bullseye"

0 commit comments

Comments
 (0)