diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2024-03-27 03:49:27 +0200 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2024-03-27 03:49:27 +0200 |
commit | 28717aded7df4ac4842fa308e67c1c15e1de4ffa (patch) | |
tree | 64a93db7a952dabf5c2af3b7776bdcf0d050e181 /bin/ak-enter | |
parent | abdfe0a5c2a86f19aafe12ae70663ddcf83a6e39 (diff) | |
download | arching-kaos-tools-28717aded7df4ac4842fa308e67c1c15e1de4ffa.tar.gz arching-kaos-tools-28717aded7df4ac4842fa308e67c1c15e1de4ffa.tar.bz2 arching-kaos-tools-28717aded7df4ac4842fa308e67c1c15e1de4ffa.zip |
Introduced and applied _ak_gpg library
Diffstat (limited to 'bin/ak-enter')
-rwxr-xr-x | bin/ak-enter | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/ak-enter b/bin/ak-enter index fd96231..01a93f9 100755 --- a/bin/ak-enter +++ b/bin/ak-enter @@ -21,6 +21,7 @@ PROGRAM="$(basename $0)" descriptionString="Crawl an arching kaos chain" source $AK_LIBDIR/_ak_logit source $AK_LIBDIR/_ak_script_description +source $AK_LIBDIR/_ak_gpg _ak_enter_title(){ description @@ -236,7 +237,7 @@ do logit "ERROR" "Could not get GPG key: $gpg ." exit 1 fi - gpg2 --homedir $AK_GPGHOME --import $gpg > /dev/null 2>&1 + _ak_gpg_key_import_from_file $gpg > /dev/null 2>&1 if [ "$?" -ne 0 ] then logit "ERROR" "Could not import GPG key: $gpg ." @@ -259,7 +260,7 @@ do fi logit "INFO" "Downloaded block $block." - gpg2 --homedir $AK_GPGHOME --verify $block.asc > /dev/null 2>&1 + _ak_gpg_verify_signature $block.asc $block > /dev/null 2>&1 if [ "$?" -ne 0 ] then logit "ERROR" "Could not verify $block with GPG key $gpg." |