Files
deb-python-tooz/setup-etcd-env.sh
Julien Danjou 5ef16e1843 Update etcd version in tests
Change-Id: Ie55a35c7d83a9512fa82385d333944a50f10ab93
Signed-off-by: Julien Danjou <julien@danjou.info>
2016-08-26 12:11:47 +02:00

32 lines
724 B
Bash
Executable File

#!/bin/bash
set -eux
if [ -z "$(which etcd)" ]; then
ETCD_VERSION=3.0.6
case `uname -s` in
Darwin)
OS=darwin
SUFFIX=zip
;;
Linux)
OS=linux
SUFFIX=tar.gz
;;
*)
echo "Unsupported OS"
exit 1
esac
case `uname -m` in
x86_64)
MACHINE=amd64
;;
*)
echo "Unsupported machine"
exit 1
esac
TARBALL_NAME=etcd-v${ETCD_VERSION}-$OS-$MACHINE
test ! -d "$TARBALL_NAME" && curl -L https://github.com/coreos/etcd/releases/download/v${ETCD_VERSION}/${TARBALL_NAME}.${SUFFIX} | tar xz
export PATH=$PATH:$TARBALL_NAME
fi
$*