c2f4cfda4f
Rather than determining what package to install on which series, just install them both for the time being as they don't seem to conflict in any current series. Signed-off-by: Adam Stokes <adam.stokes@ubuntu.com>
13 lines
222 B
Bash
Executable file
13 lines
222 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
rootfs=$1
|
|
|
|
echo "installing salt"
|
|
|
|
chroot $rootfs apt-add-repository -y ppa:saltstack/salt
|
|
chroot $rootfs apt-get update
|
|
chroot $rootfs apt-get install salt-minion -y --force-yes
|
|
|
|
rm -rf $rootfs/tmp/*
|