This repository has been archived on 2021-09-08. You can view files and clone it, but cannot push or open issues/pull-requests.
localdev-playbooks/playbook.sh

8 lines
206 B
Bash
Executable File

#!/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