Initial commit

This commit is contained in:
Christian Schendel 2025-09-01 04:31:32 +02:00
commit 81d3cd1e93
Signed by: doppelhelix
GPG key ID: 5874D2437CD5BBB3
9 changed files with 181 additions and 0 deletions

View file

@ -0,0 +1,14 @@
post_upgrade() {
if usr/bin/pacman-key -l >/dev/null 2>&1; then
usr/bin/pacman-key --populate doppelhelix
else
echo " >>> Run \`pacman-key --init\` to set up your pacman keyring."
echo " >>> Then run \`pacman-key --populate doppelhelix\` to install the doppelhelix keyring."
fi
}
post_install() {
if [ -x usr/bin/pacman-key ]; then
post_upgrade
fi
}