update saltstack repo debian url

This commit is contained in:
Justin Findlay 2015-10-20 13:04:41 -06:00
parent 8ce970db06
commit 48dea6199d

View file

@ -2328,13 +2328,13 @@ install_debian_8_deps() {
fi
# Saltstack's Stable Debian repository
if [ "$(grep -R 'debian jessie contrib' /etc/apt)" = "" ]; then
echo "deb http://repo.saltstack.com/apt/debian jessie contrib" >> \
if [ "$(grep -R 'latest jessie main' /etc/apt)" = "" ]; then
echo "deb http://repo.saltstack.com/apt/debian/latest jessie main" >> \
/etc/apt/sources.list.d/saltstack.list
fi
# shellcheck disable=SC2086
wget $_WGET_ARGS -q https://repo.saltstack.com/apt/debian/SALTSTACK-GPG-KEY.pub -O - | apt-key add - || return 1
wget $_WGET_ARGS -q https://repo.saltstack.com/apt/debian/latest/SALTSTACK-GPG-KEY.pub -O - | apt-key add - || return 1
apt-get update || return 1
__PACKAGES="libzmq3 libzmq3-dev python-zmq python-requests python-apt"