Adding initial daily support and upping minor version

This commit is contained in:
Alec Koumjian 2012-10-19 11:08:37 -07:00
parent dd518979da
commit f2b4b679cd

View file

@ -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
#