mirror of https://github.com/docker/docs.git
19 lines
366 B
Bash
Executable File
19 lines
366 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ $# -gt 0 ] ; then
|
|
CONSUL_VERSION="$1"
|
|
else
|
|
CONSUL_VERSION="0.5.2"
|
|
fi
|
|
|
|
# install consul
|
|
wget "https://dl.bintray.com/mitchellh/consul/${CONSUL_VERSION}_linux_amd64.zip"
|
|
unzip "${CONSUL_VERSION}_linux_amd64.zip"
|
|
|
|
# make config for minimum ttl
|
|
touch config.json
|
|
echo "{\"session_ttl_min\": \"2s\"}" >> config.json
|
|
|
|
# check
|
|
./consul --version
|