blob: 1ecf8a3c1d041ec99cd766edae7451e6b46b0e67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/bash
logit(){
logthis "ipfs-check" "$1"
}
ipfs files ls /zarchive
if [ $? != 0 ]; then logit "/zarchive is missing" ; fi
ipfs files ls /zlatest
if [ $? != 0 ]; then logit "/zlatest is missing" ; fi
ipfs key list | grep zchain
if [ $? != 0 ]; then logit "zchain key is missing" ; fi
ipfs key list | grep ak-config
if [ $? != 0 ]; then logit "ak-config key is missing" ; fi
|