036fd26287
the needed package is still in staging...
This reverts commit 2b749ba457
.
17 lines
474 B
Bash
Executable File
17 lines
474 B
Bash
Executable File
#!/bin/bash
|
|
if (( $EUID != 0 )); then
|
|
echo "This script must be run using sudo -H or as root"
|
|
exit
|
|
fi
|
|
|
|
apt-get -y install software-properties-common
|
|
# Add repository for ansible
|
|
add-apt-repository -y ppa:yavdr/experimental-main
|
|
# update packages
|
|
apt-get update
|
|
# install required packages
|
|
apt-get -y install --no-install-recommends ansible
|
|
|
|
# TODO: run ansible on local host
|
|
ansible-playbook yavdr07.yml -b -i 'localhost_inventory' --connection=local --tags=install
|