blob: 5d9bfc694769126a5026f1157958333a223de63b [file]
#!/bin/bash
# Builds and uploads a debian package for Grafana.
APPNAME=grafanad
DESCRIPTION="A local cache of the Grafana debian package."
# Don't run the step where we generate an .deb file, we are actually
# copying in the .deb file to be managed.
BYPASS_GENERATION=true
# Copy files into the right locations in ${ROOT}.
copy_release_files()
{
wget http://grafanarel.s3.amazonaws.com/builds/grafana_2.1.3_amd64.deb -O ${ROOT}/${APPNAME}.deb
}
source ../bash/release.sh