Skip to content
This repository has been archived by the owner on Oct 15, 2022. It is now read-only.

Commit

Permalink
Version 1.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
deniszh committed Mar 29, 2020
1 parent 0fda0fc commit 80254f4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.network :forwarded_port, guest: 2003, host: 22003
config.vm.network :forwarded_port, guest: 2004, host: 22004
config.vm.network :forwarded_port, guest: 3000, host: 3030
graphite_version = ENV['GRAPHITE_RELEASE'].nil? ? '1.1.6' : ENV['GRAPHITE_RELEASE']
graphite_version = ENV['GRAPHITE_RELEASE'].nil? ? '1.1.7' : ENV['GRAPHITE_RELEASE']
config.vm.provision "shell", inline: "cd /vagrant; GRAPHITE_RELEASE=#{graphite_version} ./install"
end
2 changes: 1 addition & 1 deletion install
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ GRAPHITE_CONF="${GRAPHITE_HOME}/conf"
GRAPHITE_STORAGE="${GRAPHITE_HOME}/storage"

if [ -z $GRAPHITE_RELEASE ]; then
GRAPHITE_RELEASE='1.1.6'
GRAPHITE_RELEASE='1.1.7'
fi

if [ -z $STATSITE_RELEASE ]; then
Expand Down
4 changes: 2 additions & 2 deletions upgrade
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# Synthesize upgrade script for Graphite 1.1.6
# Synthesize upgrade script for Graphite 1.1.7
# Jason Dixon <[email protected]>

SYNTHESIZE_HOME=$( cd "$( dirname "$0" )" && pwd )
Expand All @@ -19,7 +19,7 @@ if [[ ! $DANGER_ZONE =~ 'TRUE' ]]; then
fi

if [ -z $GRAPHITE_RELEASE ]; then
GRAPHITE_RELEASE='1.1.6'
GRAPHITE_RELEASE='1.1.7'
fi

if [[ ! $UBUNTU_RELEASE =~ 'Ubuntu 18.04' ]]; then
Expand Down

0 comments on commit 80254f4

Please sign in to comment.