You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
694 B
23 lines
694 B
#!/bin/bash
|
|
|
|
###################
|
|
# Install ansible #
|
|
if ! grep -q "ansible/ansible" /etc/apt/sources.list /etc/apt/sources.list.d/*; then
|
|
echo "Adding Ansible PPA"
|
|
sudo apt-add-repository ppa:ansible/ansible -y
|
|
fi
|
|
|
|
if ! hash ansible >/dev/null 2>&1; then
|
|
echo "Installing Ansible..."
|
|
sudo apt-get update
|
|
sudo apt-get install software-properties-common ansible git python-apt -y
|
|
else
|
|
echo "Ansible already installed"
|
|
fi
|
|
|
|
#####################################
|
|
# Display real installation process #
|
|
echo ""
|
|
echo "Customize the playbook ansible-desktop.yml to suit your needs, then run ansible with :"
|
|
echo " ansible-playbook ansible-desktop.yml --ask-become-pass"
|
|
echo ""
|