[Git-commits] [grml/grml-live] 1f76dc: docs: update usage instructions for setting up Grm...
Michael Prokop
noreply at github.com
Fri Apr 26 08:53:53 CEST 2024
Branch: refs/heads/master
Home: https://github.com/grml/grml-live
Commit: 1f76dc84f7438d60ea3cd831be5260eea7a307f6
https://github.com/grml/grml-live/commit/1f76dc84f7438d60ea3cd831be5260eea7a307f6
Author: Michael Prokop <mika at grml.org>
Date: 2024-03-13 (Wed, 13 Mar 2024)
Changed paths:
M docs/grml-live.txt
Log Message:
-----------
docs: update usage instructions for setting up Grml repository
By default `apt-get update` fails on recent Debian releases (also see
apt-secure(8), if the chain of trust hasn't been established yet:
| # apt-get update
| Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB]
| Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
| Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
| Get:4 http://deb.grml.org grml-stable InRelease [8382 B]
| Get:5 http://deb.grml.org grml-testing InRelease [15.1 kB]
| Get:6 http://deb.debian.org/debian bookworm/main amd64 Packages [8786 kB]
| Err:4 http://deb.grml.org grml-stable InRelease
| The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 21E0CA38EA2EA4AB
| Get:7 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [12.7 kB]
| Get:8 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [145 kB]
| Err:5 http://deb.grml.org grml-testing InRelease
| The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 21E0CA38EA2EA4AB
| Reading package lists... Done
| W: GPG error: http://deb.grml.org grml-stable InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 21E0CA38EA2EA4AB
| E: The repository 'http://deb.grml.org grml-stable InRelease' is not signed.
| N: Updating from such a repository can't be done securely, and is therefore disabled by default.
| N: See apt-secure(8) manpage for repository creation and user configuration details.
| W: GPG error: http://deb.grml.org grml-testing InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 21E0CA38EA2EA4AB
| E: The repository 'http://deb.grml.org grml-testing InRelease' is not signed.
| N: Updating from such a repository can't be done securely, and is therefore disabled by default.
| N: See apt-secure(8) manpage for repository creation and user configuration details.
| Reading package lists... Done
| Building dependency tree... Done
| Reading state information... Done
| E: Unable to locate package grml-debian-keyring
Whereas with `Acquire::AllowInsecureRepositories=true` we manage to
retrieve the repository information for later usage:
| root at dc4d0fb0205e:/# apt-get -o Acquire::AllowInsecureRepositories=true update
| Hit:1 http://deb.debian.org/debian bookworm InRelease
| Get:2 http://deb.grml.org grml-stable InRelease [8382 B]
| Hit:3 http://deb.debian.org/debian bookworm-updates InRelease
| Hit:4 http://deb.debian.org/debian-security bookworm-security InRelease
| Get:5 http://deb.grml.org grml-testing InRelease [15.1 kB]
| Ign:2 http://deb.grml.org grml-stable InRelease
| Get:6 http://deb.grml.org grml-stable/main amd64 Packages [9529 B]
| Ign:5 http://deb.grml.org grml-testing InRelease
| Get:7 http://deb.grml.org grml-testing/main amd64 Packages [9529 B]
| Fetched 42.5 kB in 1s (62.6 kB/s)
| Reading package lists... Done
| W: GPG error: http://deb.grml.org grml-stable InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 21E0CA38EA2EA4AB
| W: The repository 'http://deb.grml.org grml-stable InRelease' is not signed.
| N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
| N: See apt-secure(8) manpage for repository creation and user configuration details.
| W: GPG error: http://deb.grml.org grml-testing InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 21E0CA38EA2EA4AB
| W: The repository 'http://deb.grml.org grml-testing InRelease' is not signed.
| N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
| N: See apt-secure(8) manpage for repository creation and user configuration details.
Thanks: anarcat for reporting
Commit: a24d308daeb4262320e664d7c99e4d313f74e917
https://github.com/grml/grml-live/commit/a24d308daeb4262320e664d7c99e4d313f74e917
Author: Michael Prokop <mika at grml.org>
Date: 2024-04-25 (Thu, 25 Apr 2024)
Changed paths:
M etc/grml/fai/config/package_config/GRMLBASE
Log Message:
-----------
SW: drop deborphan from GRMLBASE, no longer present since Debian/trixie
Having this package in our GRMLBASE means that all builds in current
Debian/testing (AKA trixie) and unstable/sid are failing, so drop it.
See https://github.com/grml/grml-live/issues/144
Commit: 0551e9e16da7afdc7feeb0485dc930aee04a7954
https://github.com/grml/grml-live/commit/0551e9e16da7afdc7feeb0485dc930aee04a7954
Author: Michael Prokop <mika at grml.org>
Date: 2024-04-25 (Thu, 25 Apr 2024)
Changed paths:
M docs/grml-live.txt
M etc/grml/fai/config/scripts/DEBORPHAN/98-clean-chroot
Log Message:
-----------
DEBORPHAN: rework to not skip all its execution if deborphan is missing; update docs for DEBORPHAN
deborphan is missing since Debian/trixie, though `apt-get -y --purge
autoremove` as well as `dpkg --purge` of packages in rc state are still
useful. Avoid renaming of DEBORPHAN class, as that might break existing
setups. Instead clarify usage and purpose of DEBORPHAN in docs.
Closes: https://github.com/grml/grml-live/issues/144
Commit: 257896df84cc61811a4644f320128d80874d6c41
https://github.com/grml/grml-live/commit/257896df84cc61811a4644f320128d80874d6c41
Author: Michael Prokop <mika at grml.org>
Date: 2024-04-26 (Fri, 26 Apr 2024)
Changed paths:
M docs/grml-live.txt
Log Message:
-----------
Merge remote-tracking branch 'origin/github/pr/147'
Commit: 40d666f4546ecee5b6ecaef07a6875a5b190892f
https://github.com/grml/grml-live/commit/40d666f4546ecee5b6ecaef07a6875a5b190892f
Author: Michael Prokop <mika at grml.org>
Date: 2024-04-26 (Fri, 26 Apr 2024)
Changed paths:
M docs/grml-live.txt
M etc/grml/fai/config/scripts/DEBORPHAN/98-clean-chroot
Log Message:
-----------
Merge remote-tracking branch 'origin/github/pr/148'
Compare: https://github.com/grml/grml-live/compare/9ce42c632be5...40d666f4546e
To unsubscribe from these emails, change your notification settings at https://github.com/grml/grml-live/settings/notifications
More information about the Git-commits
mailing list