diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2024-03-01 19:26:24 +0200 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2024-03-01 19:26:24 +0200 |
commit | f8d2236e55e5c369b218017d1de1058d6a8ee361 (patch) | |
tree | 1cdd4ea1476c3062d3dd38ee1ba62d6bb98eb680 /bin/ak-ipfs-check | |
parent | 7affa2082f61455a413d0c8fea08e79935d4f308 (diff) | |
download | arching-kaos-tools-f8d2236e55e5c369b218017d1de1058d6a8ee361.tar.gz arching-kaos-tools-f8d2236e55e5c369b218017d1de1058d6a8ee361.tar.bz2 arching-kaos-tools-f8d2236e55e5c369b218017d1de1058d6a8ee361.zip |
Log formatting adjustment
Diffstat (limited to 'bin/ak-ipfs-check')
-rwxr-xr-x | bin/ak-ipfs-check | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/bin/ak-ipfs-check b/bin/ak-ipfs-check index d54f5fc..30ebf4d 100755 --- a/bin/ak-ipfs-check +++ b/bin/ak-ipfs-check @@ -1,38 +1,38 @@ #!/bin/bash PROGRAM="$(basename $0)" logit(){ - ak-logthis "<$PROGRAM>" "$1" "$2" + ak-logthis "$PROGRAM" "$1" "$2" } ak-ipfs-files-ls /zarchive > /dev/null if [ $? != 0 ] then - logit "[ERROR]" "/zarchive is missing" -else - logit "[INFO]" "/zarchive OK" + logit "ERROR" "/zarchive is missing" +else + logit "INFO" "/zarchive OK" fi ak-ipfs-files-ls /zlatest > /dev/null if [ $? != 0 ] then - logit "[ERROR]" "/zlatest is missing" + logit "ERROR" "/zlatest is missing" else - logit "[INFO]" "/zlatest is OK" + logit "INFO" "/zlatest is OK" fi ak-ipfs-key-list | grep zchain > /dev/null if [ $? != 0 ]; then - logit "[WARNING]" "zchain key is missing" + logit "WARNING" "zchain key is missing" ak-ipfs-key-gen zchain > $ZCHAIN if [ $? != 0 ]; then - logit "[ERROR]" "zchain fails to create" + logit "ERROR" "zchain fails to create" else - logit "[INFO]" "zchain created" + logit "INFO" "zchain created" fi else - logit "[INFO]" "zchain is there" + logit "INFO" "zchain is there" fi ak-ipfs-key-list | grep ak-config > /dev/null @@ -40,10 +40,10 @@ if [ $? != 0 ]; then logit "WARNING" "ak-config key is missing" ak-ipfs-key-gen ak-config if [ $? != 0 ]; then - logit "[ERROR]" "ak-config fails to create" + logit "ERROR" "ak-config fails to create" else - logit "[INFO]" "ak-config created" + logit "INFO" "ak-config created" fi else - logit "[INFO]" "ak-config is there" + logit "INFO" "ak-config is there" fi |