commit 5bcb868c6b42c4a4e7987439e5686d81d511bcb9
parent 9a933de3f2294a2583271dd1bb6c182227b36c27
Author: Markus Hanetzok <markus@hanetzok.net>
Date: Mon, 20 Mar 2023 14:11:18 +0100
Fix keyring refresh and progs.list
Script could not download progs.list correctly and was crashed during
keyring refresh because it still had the archlinuxarm-keyring included.
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/zerog b/zerog
@@ -3,7 +3,7 @@
### VARIABLES ###
name="$(logname)"
-progs="git.hanetzok.net/zerog/progs.list"
+progs="https://hanetzok.net/zerog/progs.list"
dotfiles="git://git.hanetzok.net/dotfiles"
logfile="/tmp/zerog.log"
suckless="git://git.hanetzok.net"
@@ -26,7 +26,7 @@ prepare() {
# Refresh keyring and update keyrings
pacman-key --refresh >/dev/null 2>>"$logfile" || { error "Could not refresh keys"; }
- pacman -Sy --noconfirm archlinux-keyring archlinuxarm-keyring parabola-keyring >/dev/null 2>>"$logfile" || { error "Could not install keyrings"; }
+ pacman -Sy --noconfirm archlinux-keyring parabola-keyring >/dev/null 2>>"$logfile" || { error "Could not install keyrings"; }
# Install some essential programs
pacman -S --noconfirm --needed git zsh ca-certificates >/dev/null 2>>"$logfile" || { error "Initial installs failed"; }