diff --git a/playbooks/bootstrap b/playbooks/bootstrap new file mode 100755 index 0000000..cbb721f --- /dev/null +++ b/playbooks/bootstrap @@ -0,0 +1,5 @@ +if [[ -f /etc/lsb-release ]]; then + sudo apt -y install zsh git +else + sudo dnf install -y zsh git +fi diff --git a/playbooks/fedora.yml b/playbooks/fedora.yml new file mode 100644 index 0000000..fc7bd01 --- /dev/null +++ b/playbooks/fedora.yml @@ -0,0 +1,6 @@ +--- +- hosts: local + roles: + - role: fedora + - role: common + diff --git a/playbooks/inventory b/playbooks/inventory new file mode 100644 index 0000000..13cfabe --- /dev/null +++ b/playbooks/inventory @@ -0,0 +1,2 @@ +[local] +localhost ansible_connection=local diff --git a/playbooks/launch b/playbooks/launch new file mode 100755 index 0000000..be2c39d --- /dev/null +++ b/playbooks/launch @@ -0,0 +1,14 @@ +#!/usr/bin/env zsh +set -ex + +git pull + +if [[ `uname` == "Linux" ]]; then + if [[ -f /etc/lsb-release ]]; then + ansible-playbook -i inventory ubuntu.yml + else + ansible-playbook -i inventory fedora.yml + fi +else + ansible-playbook -i inventory osx.yml +fi diff --git a/playbooks/osx.yml b/playbooks/osx.yml new file mode 100644 index 0000000..0121df3 --- /dev/null +++ b/playbooks/osx.yml @@ -0,0 +1,5 @@ +--- +- hosts: local + roles: + - role: osx + - role: common diff --git a/playbooks/roles/common/tasks/anyenv.yml b/playbooks/roles/common/tasks/anyenv.yml new file mode 100644 index 0000000..944a231 --- /dev/null +++ b/playbooks/roles/common/tasks/anyenv.yml @@ -0,0 +1,21 @@ +--- +- name: Install anyenv + git: + repo: https://github.com/riywo/anyenv.git + dest: ~/.anyenv + +- name: Ensure envs directory is empty + file: + state: absent + path: ~/.anyenv/envs + +- name: Ensure envs directory exists + file: + path: ~/.anyenv/envs/ + state: directory + +- name: Install pyenv + shell: ~/.anyenv/bin/anyenv install pyenv + +- name: Install rbenv + shell: ~/.anyenv/bin/anyenv install rbenv diff --git a/playbooks/roles/common/tasks/main.yml b/playbooks/roles/common/tasks/main.yml new file mode 100644 index 0000000..3d8ee37 --- /dev/null +++ b/playbooks/roles/common/tasks/main.yml @@ -0,0 +1,18 @@ +--- +- import_tasks: anyenv.yml +- import_tasks: neovim.yml + +- name: Install antigen + git: + repo: https://github.com/zsh-users/antigen.git + dest: ~/.antigen + force: yes + +- name: Symlink zshrc + file: + src: ~/.dotfiles/zsh/zshrc + dest: ~/.zshrc + state: link + force: yes + + diff --git a/playbooks/roles/common/tasks/neovim.yml b/playbooks/roles/common/tasks/neovim.yml new file mode 100644 index 0000000..f215660 --- /dev/null +++ b/playbooks/roles/common/tasks/neovim.yml @@ -0,0 +1,13 @@ +--- +- name: Ensure neovim config directory exists + file: + path: ~/.config/nvim/ + state: directory + +- name: Symlink init.vim + file: + src: ~/.dotfiles/vim/vimrc + dest: ~/.config/nvim/init.vim + state: link + force: yes + diff --git a/playbooks/roles/fedora/tasks/main.yml b/playbooks/roles/fedora/tasks/main.yml new file mode 100644 index 0000000..4881879 --- /dev/null +++ b/playbooks/roles/fedora/tasks/main.yml @@ -0,0 +1,15 @@ +--- +- name: Update Packages + become: yes + become_method: sudo + dnf: + name: "*" + state: latest + +- name: Install neovim + become: yes + become_method: sudo + dnf: + name: "neovim" + state: latest + diff --git a/playbooks/ubuntu.yml b/playbooks/ubuntu.yml new file mode 100644 index 0000000..92b2638 --- /dev/null +++ b/playbooks/ubuntu.yml @@ -0,0 +1,6 @@ +--- +- hosts: local + roles: + - role: ubuntu + - role: common +