aboutsummaryrefslogtreecommitdiff
path: root/bin/enter
diff options
context:
space:
mode:
authorkaotisk <kaotisk@arching-kaos.org>2022-09-07 00:49:29 +0300
committerkaotisk <kaotisk@arching-kaos.org>2022-09-07 00:49:29 +0300
commit325542061f289d1329a0c38db3a34d591aa9e931 (patch)
treefb616c13eca7e392da93b6b956b674789d880350 /bin/enter
parentc9f0da132ef5af2078fe2245bbf16d1350ae2dfc (diff)
downloadarching-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-xbin/enter3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/enter b/bin/enter
index 5f780ed..74d1bcc 100755
--- a/bin/enter
+++ b/bin/enter
@@ -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