mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-19 13:07:58 +00:00
9 lines
182 B
Bash
Executable File
9 lines
182 B
Bash
Executable File
#!/bin/ash
|
|
set -e -o pipefail
|
|
. /etc/functions
|
|
|
|
# Post processing of keys
|
|
gpg --import /.gnupg/keys/* 2>/dev/null || true
|
|
|
|
# TODO: split out gpg keys into multiple rings by function
|