yavdr-ansible/install-yavdr.sh

15 lines
423 B
Bash
Raw Normal View History

2017-02-19 13:56:47 +01:00
#!/bin/bash
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
apt-get -y install software-properties-common
2017-02-19 13:56:47 +01:00
# update packages
apt-get update
# install required packages
apt-get -y install --no-install-recommends ansible
2017-03-08 14:48:58 +01:00
# TODO: run ansible on local host
2018-01-07 19:00:27 +01:00
ansible-playbook yavdr07.yml -b -i 'localhost_inventory' --connection=local --tags="all" --extra-vars "first_run=True"