14 lines
306 B
Bash
Executable File
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.
|