mirror of
https://github.com/eoli3n/dotfiles
synced 2024-11-22 23:12:32 +01:00
25 lines
574 B
Bash
Executable File
25 lines
574 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd "$( dirname "${BASH_SOURCE[0]}" )"
|
|
|
|
# Install Ansible
|
|
if [[ ! -f /usr/bin/ansible ]]
|
|
then
|
|
pip install ansible
|
|
fi
|
|
|
|
if [[ -z ${1+x} ]]
|
|
then
|
|
echo "Please choose a tag to install as param:"
|
|
ansible-playbook -i "localhost," -c local install.yml --list-tags
|
|
exit 1
|
|
fi
|
|
|
|
echo "### DRYRUN #################################################################"
|
|
|
|
ansible-playbook -i "localhost," -c local install.yml --ask-become-pass -CD -t $1
|
|
|
|
echo "Do you want to install ?"
|
|
|
|
ansible-playbook -i "localhost," -c local install.yml --ask-become-pass -t $1
|