From 7ef475c7e1a7b303c5f3fcd233f56ce8d08a709f Mon Sep 17 00:00:00 2001 From: Adam Stokes Date: Tue, 1 Oct 2013 21:32:07 -0400 Subject: [PATCH] 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 --- boxes/common/install-salt | 1 + 1 file changed, 1 insertion(+) diff --git a/boxes/common/install-salt b/boxes/common/install-salt index b982117..701f99e 100755 --- a/boxes/common/install-salt +++ b/boxes/common/install-salt @@ -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