Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable usage of the Trusty beta on Travis #144

Merged
merged 2 commits into from Nov 1, 2015
Merged
Changes from 1 commit
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Prev

Use curl instead of wget to avoid cert issues

wget throws cert errors when attempting to download the SaltStack repo
GPG key from repo.saltstack.com, even though ca-certificates is
up-to-date.
  • Loading branch information
aneeshusa committed Nov 1, 2015
commit a2d4f50aca75e7fe856e88cd40fb48efc8efac48
@@ -5,7 +5,7 @@
if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then
printf "$0: installing salt for Linux\n"
# Use Trusty (Ubuntu 14.04) on Travis
wget -O - https://repo.saltstack.com/apt/ubuntu/ubuntu14/latest/SALTSTACK-GPG-KEY.pub | sudo apt-key add -
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
sudo apt-get -y update
sudo apt-get -y install salt-minion=2015.5.6+ds-1
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.