From f2b4b679cd2a2622d2aa3f9bf720e55620faab90 Mon Sep 17 00:00:00 2001 From: Alec Koumjian Date: Fri, 19 Oct 2012 11:08:37 -0700 Subject: [PATCH] Adding initial daily support and upping minor version --- bootstrap-salt-minion.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/bootstrap-salt-minion.sh b/bootstrap-salt-minion.sh index 381881f..871e89a 100755 --- a/bootstrap-salt-minion.sh +++ b/bootstrap-salt-minion.sh @@ -355,6 +355,13 @@ install_ubuntu_1110_deps() { add-apt-repository -y ppa:saltstack/salt } +install_ubuntu_daily_deps() { + apt-get update + apt-get -y install python-software-properties + add-apt-repository -y ppa:saltstack/salt-daily + apt-get update +} + install_ubuntu_1110_post() { add-apt-repository -y --remove 'deb http://us.archive.ubuntu.com/ubuntu/ oneiric universe' } @@ -362,6 +369,10 @@ install_ubuntu_1110_post() { install_ubuntu_stable() { apt-get -y install salt-minion } + +install_ubuntu_daily() { + apt-get -y install salt-minion +} # # End of Ubuntu Install Functions #