annotate scripts/send.sh @ 85:8f45c43ea7a4 feature/djs-DEP-12-docker

DEP-12: start upgrading scripts and compose files for RC and docker 1.12
author Dave Smith <smith@nwoca.org>
date Wed, 21 Sep 2016 19:00:41 -0400
parents f04f13a1d5d8
children fea886ba7279
rev   line source
63
f04f13a1d5d8 add script to send file to ssdt upload server
smith@nwoca.org
parents:
diff changeset
1 #!/bin/bash
85
8f45c43ea7a4 DEP-12: start upgrading scripts and compose files for RC and docker 1.12
Dave Smith <smith@nwoca.org>
parents: 63
diff changeset
2 #
8f45c43ea7a4 DEP-12: start upgrading scripts and compose files for RC and docker 1.12
Dave Smith <smith@nwoca.org>
parents: 63
diff changeset
3 # Securely sends a file or standard input to a SSDT web server.
8f45c43ea7a4 DEP-12: start upgrading scripts and compose files for RC and docker 1.12
Dave Smith <smith@nwoca.org>
parents: 63
diff changeset
4 # e.g:
8f45c43ea7a4 DEP-12: start upgrading scripts and compose files for RC and docker 1.12
Dave Smith <smith@nwoca.org>
parents: 63
diff changeset
5 # capture.sh | send.sh - # sends log files to ssdt server for the current project
8f45c43ea7a4 DEP-12: start upgrading scripts and compose files for RC and docker 1.12
Dave Smith <smith@nwoca.org>
parents: 63
diff changeset
6 # send.sh docker-compose.yml # sends the compose file
8f45c43ea7a4 DEP-12: start upgrading scripts and compose files for RC and docker 1.12
Dave Smith <smith@nwoca.org>
parents: 63
diff changeset
7 #
8f45c43ea7a4 DEP-12: start upgrading scripts and compose files for RC and docker 1.12
Dave Smith <smith@nwoca.org>
parents: 63
diff changeset
8 source "$( dirname "${BASH_SOURCE[0]}")/.functions.sh"
8f45c43ea7a4 DEP-12: start upgrading scripts and compose files for RC and docker 1.12
Dave Smith <smith@nwoca.org>
parents: 63
diff changeset
9
63
f04f13a1d5d8 add script to send file to ssdt upload server
smith@nwoca.org
parents:
diff changeset
10 file=${1?"Usage: $0 filename [name]\n specify the filename relative to the current directory or - for stdin.\noptionally specify a short name (default to base directory)"}
f04f13a1d5d8 add script to send file to ssdt upload server
smith@nwoca.org
parents:
diff changeset
11 if [ "$file" != "-" ]
f04f13a1d5d8 add script to send file to ssdt upload server
smith@nwoca.org
parents:
diff changeset
12 then
f04f13a1d5d8 add script to send file to ssdt upload server
smith@nwoca.org
parents:
diff changeset
13 file="/tmp/${file}"
f04f13a1d5d8 add script to send file to ssdt upload server
smith@nwoca.org
parents:
diff changeset
14 fi
f04f13a1d5d8 add script to send file to ssdt upload server
smith@nwoca.org
parents:
diff changeset
15 name=${2:-$(basename $PWD)}
f04f13a1d5d8 add script to send file to ssdt upload server
smith@nwoca.org
parents:
diff changeset
16 source=$(hostname)
85
8f45c43ea7a4 DEP-12: start upgrading scripts and compose files for RC and docker 1.12
Dave Smith <smith@nwoca.org>
parents: 63
diff changeset
17
8f45c43ea7a4 DEP-12: start upgrading scripts and compose files for RC and docker 1.12
Dave Smith <smith@nwoca.org>
parents: 63
diff changeset
18 docker run -i -v $SSDT_HOME:/ssdt -v ${PWD}:/tmp --rm docker.ssdt.io/ssdt-utils \
63
f04f13a1d5d8 add script to send file to ssdt upload server
smith@nwoca.org
parents:
diff changeset
19 curl -F source=$source -F name=$name -F file=@$file https://upload.ssdt.io/upload