From 68c1b07b23b047564a48e39d4373930044ada5ce Mon Sep 17 00:00:00 2001 From: DragonSlayer_14 Date: Mon, 24 Aug 2026 19:59:01 +0200 Subject: [PATCH 1/2] =?UTF-8?q?Feat:=20F=C3=BCgt=20Anweisung=20f=C3=BCr=20?= =?UTF-8?q?Arch=20f=C3=BCrs=20hinzuf=C3=BCgen=20des=20Repo-GPG-Keys=20hinz?= =?UTF-8?q?u?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7660808..3bb2b04 100644 --- a/README.md +++ b/README.md @@ -130,10 +130,32 @@ zypper install docker-update ### 3. Arch Linux (`pacman`) +### Installiere den GPG-Key für das Repository + +Key herunterladen: + +```bash +wget https://gitea.creative-dragonslayer.de/api/packages/Linuxapps/arch/repository.key +``` + +ID des Keys anzeigen lassen: + +```bash +gpg --show-keys repository.key +``` + +Key zu pacman hinzufügen und signieren: + +``` +pacman-key --add repository.key +pacman-key --lsign-key {key id} +``` + +{key id} = ID aus dem vorherigen Schritt + #### Stable (Produktiv) Füge das Repository in `/etc/pacman.conf` ein: - ```ini [stable] SigLevel = Optional TrustAll From 10dc412566519491f2df9b302ce4561da41ca9aa Mon Sep 17 00:00:00 2001 From: DragonSlayer_14 Date: Mon, 24 Aug 2026 19:59:33 +0200 Subject: [PATCH 2/2] Feat: Hebt Version auf 1.0.0 an --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 44dbabc..c9bf5c4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -29,7 +29,7 @@ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c" [[package]] name = "docker-update" -version = "0.1.3" +version = "1.0.0" dependencies = [ "confy", "libc 1.0.0-alpha.4", diff --git a/Cargo.toml b/Cargo.toml index eee3657..494e795 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "docker-update" -version = "0.1.3" +version = "1.0.0" edition = "2024" authors = ['DragonSlayer_14'] readme = "README.md"