aboutsummaryrefslogtreecommitdiff
path: root/bin/akconfig
blob: 3a833af642f48222be8afc056d332fc2e69cfbea (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
#!/bin/bash
title(){
	echo "Arching Kaos Configuration Tool"
	echo "==============================="
}
usage(){
	title
	echo ""
	echo "Usage: 	$0 [ <show> | <publish> ]"
	echo ""
	echo "	show		Show current configuration (from FileSystem)"
	echo "	publish		Publish current configuration"
	echo ""
	exit 0
}

show(){
	echo '
{ 
    "profile":'$(profile index | json_pp)', 
    "genesis":"'$(cat $HOME/.arching-kaos/config/zgenesis)'",
    "gpg":"'$GPG_PUB_KEY'",
    "zchain":"'$(cat $HOME/.arching-kaos/config/zchain)'" 
}';
}

publish(){
	show | json_pp > tmpfile
	ipfs name publish --key=ak-config /ipfs/$(ipfs add -q tmpfile)
	rm tmpfile
}

# We will be using our public key also to put it in the block later
KEY="tmp-gpg.pub"
gpg2 --armour --output $KEY --export $FINGERPRINT
GPG_PUB_KEY=$(ipfs add -q $KEY)
rm $KEY

if [ ! -z $1 ]; then
	case $1 in
		show) show;exit;;
		publish) publish;exit;;
		*) usage;exit;;
	esac
else
	usage
fi