Skip to content

Instantly share code, notes, and snippets.

@mbruzek
Last active August 29, 2015 14:08
Show Gist options
  • Save mbruzek/67ef39e0341b37f44d4e to your computer and use it in GitHub Desktop.
Save mbruzek/67ef39e0341b37f44d4e to your computer and use it in GitHub Desktop.
Amulet setup script
#!/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