14 lines
320 B
Bash
14 lines
320 B
Bash
#!/bin/bash
|
|
if (( $EUID != 0 )); then
|
|
echo "This script must be run using sudo or as root"
|
|
exit
|
|
fi
|
|
|
|
apt-get -y install software-properties-common
|
|
# Add repository for ansible
|
|
add-apt-repository -y ppa:ansible/ansible
|
|
# update packages
|
|
apt-get update
|
|
# install required packages
|
|
apt-get -y install ansible python
|