Skip to content

Instantly share code, notes, and snippets.

View nbrownus's full-sized avatar
💥

Nate Brown nbrownus

💥
  • Defined Networking, Inc
  • Earth
View GitHub Profile
@nbrownus
nbrownus / carbon-deb.sh
Last active November 10, 2015 22:33
Creates a deb for carbon
VERSION="0.9.14"
BUILD="slack2"
set -e -x
ORIGPWD="$(pwd)"
TMP="$(mktemp -d)"
cd $TMP
trap "rm -rf \"$TMP\"" EXIT INT QUIT TERM
git clone https://github.com/graphite-project/carbon.git
@nbrownus
nbrownus / graphite-web-deb.sh
Last active November 10, 2015 22:33
Creates a deb for graphite-web
VERSION="0.9.14"
BUILD="slack4"
set -e -x
ORIGPWD="$(pwd)"
TMP="$(mktemp -d)"
cd $TMP
trap "rm -rf \"$TMP\"" EXIT INT QUIT TERM
git clone https://github.com/graphite-project/graphite-web.git
@nbrownus
nbrownus / kibana-deb.sh
Last active August 29, 2015 13:56
Make a .deb from kibana-latest.zip
# Run this in a path you don't care about, things may get deleted!
VERSION="3.0.0"
BUILD="betable2"
set -e -x
ORIGPWD="$(pwd)"
cd "$(mktemp -d)"
trap "rm -rf \"$PWD\"" EXIT INT QUIT TERM