diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-05-28 14:38:39 +0200 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-05-28 15:10:52 +0200 |
commit | 472d4b34027f37b05f10d5558d28d6c6bca74ff2 (patch) | |
tree | ec72e0b0278b3bde5b2099eb7e00373c4520fb71 /scripts/get-syncthing.sh | |
parent | cd39a10faf25c07bd235824c5606bf7f08f63182 (diff) |
Add script to get xds-agent tarballs.
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
Diffstat (limited to 'scripts/get-syncthing.sh')
-rwxr-xr-x | scripts/get-syncthing.sh | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/scripts/get-syncthing.sh b/scripts/get-syncthing.sh deleted file mode 100755 index 54ca7e1..0000000 --- a/scripts/get-syncthing.sh +++ /dev/null @@ -1,58 +0,0 @@ -#!/bin/bash - -# Configurable variables -[ -z "$SYNCTHING_VERSION" ] && SYNCTHING_VERSION=0.14.28 - -# FIXME: temporary HACK while waiting merge of #165 -#[ -z "$SYNCTHING_INOTIFY_VERSION" ] && SYNCTHING_INOTIFY_VERSION=0.8.5 -[ -z "$SYNCTHING_INOTIFY_VERSION" ] && { SYNCTHING_INOTIFY_VERSION=master; SYNCTHING_INOTIFY_CMID=af6fbf9d63f95a0; } -[ -z "$DESTDIR" ] && DESTDIR=/usr/local/bin -[ -z "$TMPDIR" ] && TMPDIR=/tmp - - -TEMPDIR=$TMPDIR/.get-st.$$ -mkdir -p ${TEMPDIR} && cd ${TEMPDIR} || exit 1 -trap "cleanExit" 0 1 2 15 -cleanExit () -{ - rm -rf ${TEMPDIR} -} - -echo "Get Syncthing..." - -## Install Syncthing + Syncthing-inotify -## gpg: key 00654A3E: public key "Syncthing Release Management <release@syncthing.net>" imported -gpg -q --keyserver pool.sks-keyservers.net --recv-keys 37C84554E7E0A261E4F76E1ED26E6ED000654A3E || exit 1 - -tarball="syncthing-linux-amd64-v${SYNCTHING_VERSION}.tar.gz" \ - && curl -sfSL "https://github.com/syncthing/syncthing/releases/download/v${SYNCTHING_VERSION}/${tarball}" -O \ - && curl -sfSL "https://github.com/syncthing/syncthing/releases/download/v${SYNCTHING_VERSION}/sha1sum.txt.asc" -O \ - && gpg -q --verify sha1sum.txt.asc \ - && grep -E " ${tarball}\$" sha1sum.txt.asc | sha1sum -c - \ - && rm sha1sum.txt.asc \ - && tar -xvf "$tarball" --strip-components=1 "$(basename "$tarball" .tar.gz)"/syncthing \ - && mv syncthing ${DESTDIR}/syncthing || exit 1 - -echo "Get Syncthing-inotify..." -if [ "$SYNCTHING_INOTIFY_VERSION" = "master" ]; then - mkdir -p ${TEMPDIR}/syncthing-inotify-build/src/github.com/syncthing || exit 1 - cd ${TEMPDIR}/syncthing-inotify-build/src/github.com/syncthing - git clone https://github.com/syncthing/syncthing || exit 1 - git clone https://github.com/syncthing/syncthing-inotify || exit 1 - cd syncthing-inotify - if [ "$SYNCTHING_INOTIFY_CMID" != "" ]; then - git checkout -q $SYNCTHING_INOTIFY_CMID || exit 1 - fi - git status - export GOPATH=$(realpath `pwd`/../../../..) - version=$(git describe --tags --always | sed 's/^v//')__patch_165 - go build -v -i -ldflags "-w -X main.Version=$version" -o ${DESTDIR}/syncthing-inotify || exit 1 -else - -tarball="syncthing-inotify-linux-amd64-v${SYNCTHING_INOTIFY_VERSION}.tar.gz" \ - && curl -sfSL "https://github.com/syncthing/syncthing-inotify/releases/download/v${SYNCTHING_INOTIFY_VERSION}/${tarball}" -O \ - && tar -xvf "${tarball}" syncthing-inotify \ - && mv syncthing-inotify ${DESTDIR}/syncthing-inotify -fi - -echo "DONE: syncthing and syncthing-inotify successfuly installed in ${DESTDIR}"
\ No newline at end of file |