diff --git a/global/post-tasks.d/015cosmos-trust b/global/post-tasks.d/015cosmos-trust index cbb748f9..1f3e7484 100755 --- a/global/post-tasks.d/015cosmos-trust +++ b/global/post-tasks.d/015cosmos-trust @@ -32,7 +32,7 @@ for k in $COSMOS_KEYS/*.pub; do # Silently ignore empty files continue fi - pubkeys_in_file=$(cosmos gpg --with-colons --with-fingerprint < $k | grep "^pub:") + pubkeys_in_file=$(cosmos gpg --with-colons --with-fingerprint < $k 2>&1 | grep "^pub:") non_expired_pubkeys_in_file=$(echo ${pubkeys_in_file} | awk -F: '$2 != "e" { print $0 }') if [[ ! $non_expired_pubkeys_in_file ]]; then echo -e "$0: ${red}Ignoring file with expired pubkey: ${k}${reset}" @@ -46,10 +46,10 @@ for k in $COSMOS_KEYS/*.pub; do if [[ ! ${KEYRING[$fp]} ]]; then echo -e "$0: ${bold}Importing new key ${fp}${reset} from ${k}" - cosmos gpg --import < $k + cosmos gpg --no-tty --import < $k elif [[ ${EXPIRED[$fp]} ]]; then echo -e "$0: ${bold}Re-importing expired key ${fp}${reset} from ${k}" - cosmos gpg --import < $k + cosmos gpg --no-tty --import < $k fi done