summaryrefslogtreecommitdiff
path: root/catlfish-benchmark/createauthkeys.sh
diff options
context:
space:
mode:
authorMagnus Ahltorp <map@kth.se>2015-11-11 11:27:45 +0100
committerMagnus Ahltorp <map@kth.se>2015-11-11 11:27:45 +0100
commit07a3b0d06d28a05c5c73a8e1ba6e3a1abf9522a6 (patch)
tree322db82486070f8bbdc8f049b5c0ac5ba377eb41 /catlfish-benchmark/createauthkeys.sh
parent2c7fff406b1aa916aca399fe1e0f12dfaf6acbf2 (diff)
Make benchmarking workbench
Diffstat (limited to 'catlfish-benchmark/createauthkeys.sh')
-rwxr-xr-xcatlfish-benchmark/createauthkeys.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/catlfish-benchmark/createauthkeys.sh b/catlfish-benchmark/createauthkeys.sh
new file mode 100755
index 0000000..920cc38
--- /dev/null
+++ b/catlfish-benchmark/createauthkeys.sh
@@ -0,0 +1,12 @@
+NODES="frontend merge signing mergebackup"
+
+mkdir privatekeys
+mkdir publickeys
+
+for node in $NODES; do
+ (
+ cd privatekeys
+ /usr/local/src/catlfish/tools/create-key.sh $node
+ )
+ mv privatekeys/$node.pem publickeys/
+done