From ea5c33698fd95ea65bb8c62efee1b836f6dce7b2 Mon Sep 17 00:00:00 2001 From: "committer@tuxwarrior" Date: Wed, 18 Mar 2026 09:06:52 -0500 Subject: [PATCH] new and improved --- dots/bin/importGnupgKeys.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/dots/bin/importGnupgKeys.sh b/dots/bin/importGnupgKeys.sh index ac4e61c..bce1e94 100755 --- a/dots/bin/importGnupgKeys.sh +++ b/dots/bin/importGnupgKeys.sh @@ -29,9 +29,6 @@ ls -al ${src_dir} the_file=$(find . -name "*.zip.gpg" -print | head -n 1) echo "file located: '${the_file}'" -# copy .zip.gpg to tmp dir -#cp ${the_file} ${tmp_dir} - # decrypt .gpg gpg --decrypt --output ${tmp_dir}/gpgKeys.zip ${the_file} @@ -41,7 +38,7 @@ unzip -j -d ${tmp_dir} ${tmp_dir}/gpgKeys.zip # delete decrypted zip file srm -v ${tmp_dir}/gpgKeys.zip -# import keys +# import keys, and delete the source files afterwards for file in ${tmp_dir}/*.asc; do echo "processing '${file}'"