From b71cfb7cfdcb890f6d63fa2bed20ce8664afe3f9 Mon Sep 17 00:00:00 2001 From: Todd Persen Date: Fri, 19 Jun 2015 11:05:00 -0700 Subject: [PATCH] Clean up descriptions and stop pushing to both S3 buckets. --- package.sh | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/package.sh b/package.sh index fc5ca91bdbba9..fd57abe96cfd4 100755 --- a/package.sh +++ b/package.sh @@ -45,8 +45,8 @@ ARCH=`uname -i` LICENSE=MIT URL=influxdb.com MAINTAINER=support@influxdb.com -VENDOR=Influxdb -DESCRIPTION="InfluxDB agent" +VENDOR=InfluxDB +DESCRIPTION="InfluxDB Telegraf agent" PKG_DEPS=(coreutils) GO_VERSION="go1.4.2" GOPATH_INSTALL= @@ -340,15 +340,8 @@ if [ "x$response" == "xy" ]; then for filepath in `ls *.{deb,rpm}`; do echo "Uploading $filepath to S3" filename=`basename $filepath` - bucket=influxdb - echo "Uploading $filename to s3://influxdb/$filename" - AWS_CONFIG_FILE=$AWS_FILE aws s3 cp $filepath s3://influxdb/$filename --acl public-read --region us-east-1 - if [ $? -ne 0 ]; then - echo "Upload failed -- aborting". - cleanup_exit 1 - fi - echo "Uploading $filename to s3://get.influxdb.org/$filename" - AWS_CONFIG_FILE=$AWS_FILE aws s3 cp $filepath s3://get.influxdb.org/$filename --acl public-read --region us-east-1 + echo "Uploading $filename to s3://get.influxdb.org/telegraf/$filename" + AWS_CONFIG_FILE=$AWS_FILE aws s3 cp $filepath s3://get.influxdb.org/telegraf/$filename --acl public-read --region us-east-1 if [ $? -ne 0 ]; then echo "Upload failed -- aborting". cleanup_exit 1