File: quickcluster.bash

package info (click to toggle)
golang-github-weaveworks-mesh 0%2Bgit20161024.3dd75b1-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 412 kB
  • sloc: sh: 59; makefile: 7
file content (17 lines) | stat: -rwxr-xr-x 274 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env bash

set -o errexit
set -o nounset
set -o pipefail

# Kill child processes at exit
trap "pkill -P $$" SIGINT SIGTERM EXIT

go install github.com/weaveworks/mesh/metcd/metcdsrv

metcdsrv -quicktest=1 &
metcdsrv -quicktest=2 &
metcdsrv -quicktest=3 &

read x