This repository has been archived on 2021-09-08. You can view files and clone it, but cannot push or open issues/pull-requests.
|
#!/bin/sh
|
|
|
|
if [ "$(uname -s)" = "Linux" ] ; then
|
|
ansible-playbook -i linux-inventory.yml localdev.yml
|
|
elif [ "$(uname -s)" = "FreeBSD" ] ; then
|
|
ansible-playbook -i freebsd-inventory.yml localdev.yml
|
|
fi
|