From 9fccba1ec23b9674e3d3751b42b7177cee2b23c2 Mon Sep 17 00:00:00 2001 From: Aneesh Agrawal Date: Mon, 14 Dec 2015 22:32:01 -0500 Subject: [PATCH] Update to Salt 2015.5.8 Also switch to new archive url scheme (introduced with 2015.8.3). The new archive urls point to a specific Salt version and will not change over time, allowing for precise version pinning. Closes #174. --- .travis/install_salt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis/install_salt b/.travis/install_salt index 065caf15..49d4d604 100755 --- a/.travis/install_salt +++ b/.travis/install_salt @@ -14,10 +14,10 @@ install_salt () { if [ "${OS_NAME}" = "linux" ]; then printf "$0: installing salt for Linux\n" # Use Trusty (Ubuntu 14.04) on Travis - curl https://repo.saltstack.com/apt/ubuntu/ubuntu14/latest/SALTSTACK-GPG-KEY.pub | sudo apt-key add - - printf 'deb http://repo.saltstack.com/apt/ubuntu/ubuntu14/2015.5 trusty main\n' | sudo tee -a /etc/apt/sources.list >/dev/null + curl https://repo.saltstack.com/apt/ubuntu/14.04/amd64/archive/2015.5.8/SALTSTACK-GPG-KEY.pub | sudo apt-key add - + printf 'deb http://repo.saltstack.com/apt/ubuntu/14.04/amd64/archive/2015.5.8 trusty main\n' | sudo tee -a /etc/apt/sources.list >/dev/null sudo apt-get -y update - sudo apt-get -y install salt-minion=2015.5.6+ds-1 + sudo apt-get -y install salt-minion=2015.5.8+ds-1 elif [ "${OS_NAME}" = "osx" ]; then printf "$0: installing salt for Mac OS X\n" brew update