yavdr-ansible/install-yavdr.sh

18 lines
455 B
Bash
Raw Normal View History

2017-02-19 13:56:47 +01:00
#!/bin/bash
set -e
2017-02-19 13:56:47 +01:00
if (( $EUID != 0 )); then
2017-12-16 18:02:33 +01:00
echo "This script must be run using sudo -H or as root"
2017-02-19 13:56:47 +01:00
exit
fi
# update packages
apt update
apt -y install software-properties-common
add-apt-repository -y ppa:ansible/ansible-2.7
2017-02-19 13:56:47 +01:00
# install required packages
apt-get -y install --no-install-recommends ansible python-jmespath
2017-03-08 14:48:58 +01:00
# TODO: run ansible on local host
2019-05-06 18:27:12 +02:00
ansible-playbook yavdr07.yml -b -i 'localhost_inventory' --connection=local --tags="all"