PKGBUILDs/core/archlinuxarm-keyring/archlinuxarm-keyring.install
Christian Hesse ae2857c968
core/archlinuxarm-keyring to 20240419-1 (#2025)
One of the master keys depends on SHA-1, and nobody cares to update it.
Let's ditch the master keys completely, sign and trust the builder key
instead.
2024-04-19 12:07:16 -06:00

14 lines
202 B
Bash

#!/bin/sh
post_upgrade() {
if usr/bin/pacman-key -l >/dev/null 2>&1; then
usr/bin/pacman-key --populate archlinuxarm
fi
}
post_install() {
if [ -x usr/bin/pacman-key ]; then
post_upgrade
fi
}