Changed to ansible deploy

This commit is contained in:
acicchetti 2018-11-12 14:38:19 -05:00
parent 626d3ce214
commit 20a619211b
10 changed files with 105 additions and 0 deletions

5
playbooks/bootstrap Executable file
View file

@ -0,0 +1,5 @@
if [[ -f /etc/lsb-release ]]; then
sudo apt -y install zsh git
else
sudo dnf install -y zsh git
fi

6
playbooks/fedora.yml Normal file
View file

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

2
playbooks/inventory Normal file
View file

@ -0,0 +1,2 @@
[local]
localhost ansible_connection=local

14
playbooks/launch Executable file
View file

@ -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

5
playbooks/osx.yml Normal file
View file

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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

6
playbooks/ubuntu.yml Normal file
View file

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