set --no-install-recommands for ansible installation

This commit is contained in:
Alexander Grothe 2017-11-22 11:36:00 +01:00
parent 49bcecb027
commit 748df6954e
2 changed files with 2 additions and 2 deletions

View File

@ -148,7 +148,7 @@ add-apt-repository -y ppa:ansible/ansible
# update packages
apt-get update
# install required packages
apt-get -y install ansible
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

View File

@ -10,7 +10,7 @@ add-apt-repository -y ppa:ansible/ansible
# update packages
apt-get update
# install required packages
apt-get -y install ansible
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