19 lines
476 B
Bash
Executable File
19 lines
476 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# docker run --rm -it --hostname test3 --name test3 --network wesher_test --volume `pwd`:/app golang:1.12-alpine
|
|
# cd /app
|
|
# apk add git
|
|
# export PATH=/app:$PATH
|
|
# go run . --loglevel debug --clusterkey 'ILICZ3yBMCGAWNIq5Pn0bewBVimW3Q2yRVJ/Be+b1Uc='
|
|
|
|
case $1 in
|
|
genkey)
|
|
echo "ILICZ3yBMCGAWNIq5Pn0bewBVimW3Q2yRVJ/Be+b1Uc="
|
|
;;
|
|
pubkey)
|
|
read x
|
|
echo "VceweY6x/QdGXEQ6frXrSd8CwUAInUmqIc6G/qi8FHo="
|
|
;;
|
|
*)
|
|
;;
|
|
esac |