Changed to ansible deploy
This commit is contained in:
parent
626d3ce214
commit
20a619211b
10 changed files with 105 additions and 0 deletions
5
playbooks/bootstrap
Executable file
5
playbooks/bootstrap
Executable 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
6
playbooks/fedora.yml
Normal file
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
- hosts: local
|
||||
roles:
|
||||
- role: fedora
|
||||
- role: common
|
||||
|
2
playbooks/inventory
Normal file
2
playbooks/inventory
Normal file
|
@ -0,0 +1,2 @@
|
|||
[local]
|
||||
localhost ansible_connection=local
|
14
playbooks/launch
Executable file
14
playbooks/launch
Executable 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
5
playbooks/osx.yml
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
- hosts: local
|
||||
roles:
|
||||
- role: osx
|
||||
- role: common
|
21
playbooks/roles/common/tasks/anyenv.yml
Normal file
21
playbooks/roles/common/tasks/anyenv.yml
Normal 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
|
18
playbooks/roles/common/tasks/main.yml
Normal file
18
playbooks/roles/common/tasks/main.yml
Normal 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
|
||||
|
||||
|
13
playbooks/roles/common/tasks/neovim.yml
Normal file
13
playbooks/roles/common/tasks/neovim.yml
Normal 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
|
||||
|
15
playbooks/roles/fedora/tasks/main.yml
Normal file
15
playbooks/roles/fedora/tasks/main.yml
Normal 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
6
playbooks/ubuntu.yml
Normal file
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
- hosts: local
|
||||
roles:
|
||||
- role: ubuntu
|
||||
- role: common
|
||||
|
Loading…
Add table
Reference in a new issue