1
0
mirror of https://github.com/eoli3n/dotfiles synced 2024-09-24 21:10:50 +02:00
eoli3n-dotfiles/install.yml

66 lines
1.8 KiB
YAML

---
- hosts: all
roles:
- { role: authorized_keys, tags: init_ssh }
- hosts: server
tags: limit
tasks:
- name: Limit to Archlinux/Debian/Centos/FreeBSD
fail:
msg: "{{ ansible_distribution }} is not supported with this tag."
when: (ansible_distribution != "CentOS") and
(ansible_distribution != "Debian") and
(ansible_distribution != "Archlinux") and
(ansible_distribution != "FreeBSD")
- hosts: desktop:laptop
tags: limit
tasks:
- name: Limit to Archlinux
fail:
msg: "{{ ansible_distribution }} is not supported with this tag."
when: ansible_distribution != "Archlinux"
- name: Limit to user accounts
fail:
msg: "Don't run as root."
when: ansible_user_id == "root"
- hosts: server:desktop:laptop
tasks:
- name: update package list if apt
apt:
update_cache: yes
when: ansible_distribution == "Debian"
- hosts: server:desktop:laptop
roles:
- { role: packages-common, tags: packages-common }
- { role: fish, tags: fish }
- { role: neovim, tags: neovim }
- { role: terminfo, tags: terminfo }
- { role: screen, tags: screen }
- hosts: desktop:laptop
roles:
- { role: packages-desktop, tags: packages-desktop }
- { role: gtk, tags: gtk }
- { role: sway, tags: sway }
- { role: variety, tags: variety }
- { role: rofi, tags: rofi }
- { role: neofetch, tags: neofetch }
- { role: termite, tags: termite }
- { role: weechat, tags: weechat }
- { role: ssh-agent, tags: ssh-agent }
tasks:
- include_role:
name: vagrant
when: ansible_user_id == "vagrant"
tags: vagrant
- hosts: laptop
roles:
- { role: packages-laptop, tags: packages-laptop }
- { role: xbindkeys, tags: xbindkeys }