2013-07-19 16:48:21 -04:00
|
|
|
#!/bin/bash
|
|
|
|
|
2013-09-20 23:13:30 -03:00
|
|
|
set -e
|
|
|
|
|
2013-09-19 12:02:14 -03:00
|
|
|
rootfs=$1
|
2013-07-19 16:48:21 -04:00
|
|
|
|
|
|
|
echo "installing salt"
|
2013-07-19 17:32:42 -04:00
|
|
|
chroot $rootfs apt-add-repository -y ppa:saltstack/salt
|
2013-07-19 16:48:21 -04:00
|
|
|
chroot $rootfs apt-get update
|
|
|
|
chroot $rootfs apt-get install salt-minion -y --force-yes
|
|
|
|
|
|
|
|
rm -rf $rootfs/tmp/*
|