blob: 48cd2306fa2d9d27aaf75ec216e2a76e0970c878 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/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 or other required software.
sudo apt-get install -y python3-requests
|