2017-02-19 13:56:47 +01:00
|
|
|
#!/bin/bash
|
|
|
|
if (( $EUID != 0 )); then
|
|
|
|
echo "This script must be run using sudo or as root"
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2017-02-28 16:31:43 +01:00
|
|
|
apt-get -y install software-properties-common
|
2017-02-19 13:56:47 +01:00
|
|
|
# Add repository for ansible
|
|
|
|
add-apt-repository -y ppa:ansible/ansible
|
|
|
|
# update packages
|
|
|
|
apt-get update
|
|
|
|
# install required packages
|
2017-02-28 16:31:43 +01:00
|
|
|
apt-get -y install ansible python
|