1
0
mirror of https://github.com/eoli3n/dotfiles synced 2024-11-22 23:12:32 +01:00

added root config cli

This commit is contained in:
eoli3n 2020-05-07 17:44:57 +02:00
parent c68a1d207e
commit 857e5ab427

@ -17,10 +17,20 @@
msg: "Don't run as root."
when: ansible_user_id == "root"
# Configure user cli
- hosts: server:desktop:laptop
roles:
- { role: fish, tags: fish }
- { role: fish, become: yes, tags: fish }
- { role: neovim, tags: neovim }
- { role: screen, tags: screen }
- { role: git, tags: git }
- { role: userbin, tags: userbin }
# Configure root cli
- hosts: server:desktop:laptop
become: yes
roles:
- { role: fish, tags: fish }
- { role: neovim, tags: neovim }
- { role: screen, tags: screen }
- { role: git, tags: git }