diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2022-09-07 00:49:29 +0300 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2022-09-07 00:49:29 +0300 |
commit | 325542061f289d1329a0c38db3a34d591aa9e931 (patch) | |
tree | fb616c13eca7e392da93b6b956b674789d880350 /bin/enter | |
parent | c9f0da132ef5af2078fe2245bbf16d1350ae2dfc (diff) | |
download | arching-kaos-tools-325542061f289d1329a0c38db3a34d591aa9e931.tar.gz arching-kaos-tools-325542061f289d1329a0c38db3a34d591aa9e931.tar.bz2 arching-kaos-tools-325542061f289d1329a0c38db3a34d591aa9e931.zip |
Added a functionality I forgot to mention in the Usage section, changed a tag of a log message
Diffstat (limited to 'bin/enter')
-rwxr-xr-x | bin/enter | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -7,6 +7,7 @@ usage(){ echo " --chain <ipns-link>, -n <ipns-link> Crawl specified chain" echo " --show-zblocks-only, -z Show only zblocks" echo " --no-verify, -nV Don't verify signatures" + echo " <ipfs-link> Specify IPFS CID for entrance" echo "" echo "Note that combined flags don't work for now" echo "Running with no flags crawls your chain" @@ -203,7 +204,7 @@ do gpg2 --verify $block.asc > /dev/null 2>&1 if [ "$?" == 0 ] then - logthis "[INFO]" "$gpg signature of $block is verified." + logthis "[GPG]" "$gpg signature of $block is verified." else logthis "[ERROR]" "Could not verify $block with GPG key $gpg." exit 1 |