Added common playbook for undetected linux system

This commit is contained in:
Anthony Cicchetti 2019-07-09 16:39:12 -04:00
parent 9150117972
commit 26e2a1ffec
2 changed files with 8 additions and 1 deletions

4
playbooks/common.yml Normal file
View file

@ -0,0 +1,4 @@
---
- hosts: local
roles:
- role: common

View file

@ -8,8 +8,11 @@ if [[ `uname` == "Linux" ]]; then
ansible-playbook -i inventory arch.yml
elif [[ -f /etc/lsb-release ]]; then
ansible-playbook -i inventory ubuntu.yml
else
elif [[ -f /etc/fedora-release ]]; then
ansible-playbook -i inventory fedora.yml
else
echo "can't autodetermine distro, just running default inventory"
ansible-playbook -i inventory common.yml
fi
else
ansible-playbook -i inventory osx.yml