2014-10-28 18:02:23 -05:00

14 lines
306 B
Bash
Executable File

#!/bin/bash
set -ex
# Check if amulet is installed before adding repository and updating apt-get.
dpkg -s amulet
if [ $? -ne 0 ]; then
sudo add-apt-repository -y ppa:juju/stable
sudo apt-get update
sudo apt-get install -y amulet
fi
# Install any additional python packages or software here.