blob: b891ea1c6e5e61cd3e73d25613258e42c2df35c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
#!/bin/bash
logit(){
logthis "ipfs-check: $1"
}
ipfs files ls /zarchive > /dev/null
if [ $? != 0 ]
then
logit "/zarchive is missing"
else
logit "/zarchive OK"
fi
ipfs files ls /zlatest > /dev/null
if [ $? != 0 ]
then
logit "/zlatest is missing"
else
logit "/zlatest is OK"
fi
ipfs key list | grep zchain > /dev/null
if [ $? != 0 ]; then
logit "zchain key is missing"
ipfs key gen zchain > $ZCHAIN
if [ $? != 0 ]; then
logit "zchain fails to create"
else
logit "zchain created"
fi
else
logit "zchain is there"
fi
ipfs key list | grep ak-config > /dev/null
if [ $? != 0 ]; then
logit "ak-config key is missing"
ipfs key gen ak-config
if [ $? != 0 ]; then
logit "ak-config fails to create"
else
logit "ak-config created"
fi
else
logit "ak-config is there"
fi
|