Last active
August 29, 2015 14:08
-
-
Save mbruzek/67ef39e0341b37f44d4e to your computer and use it in GitHub Desktop.
Amulet setup script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This script sets up the requirements for amulet tests. | |
set -x | |
# Check if amulet is installed before adding the stable repository and updating apt-get. | |
dpkg -s amulet | |
if [ $? -ne 0 ]; then | |
sudo add-apt-repository -y ppa:juju/stable | |
sudo apt-get update -qq | |
sudo apt-get install -y amulet | |
fi | |
# Install any additional python packages and other required software. | |
sudo apt-get install -y python3-requests |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment