Include python-software-properties

For some reason I never had this in the common script and apt-add-repository
was not provided. This solves that.

Signed-off-by: Adam Stokes <adam.stokes@ubuntu.com>
This commit is contained in:
Adam Stokes 2013-10-01 21:32:07 -04:00 committed by Fabio Rehm
parent 910a6c54ba
commit 7ef475c7e1

View file

@ -5,6 +5,7 @@ set -e
rootfs=$1
echo "installing salt"
chroot $rootfs apt-get install python-software-properties -y --force-yes
chroot $rootfs apt-add-repository -y ppa:saltstack/salt
chroot $rootfs apt-get update
chroot $rootfs apt-get install salt-minion -y --force-yes