Split misc role into actual steps

This commit is contained in:
Michael Mandl 2020-05-31 17:27:58 +02:00
parent 5a647e07bf
commit 85f0dd8870
8 changed files with 88 additions and 70 deletions

25
roles/zsh/tasks/main.yaml Normal file
View file

@ -0,0 +1,25 @@
---
- name: install required packages
package:
name:
- curl
- zsh
state: latest
- name: install zsh config
become_user: "{{ account.name }}"
shell:
chdir: "{{ dotfiles }}/zsh"
cmd: ./install.sh
creates: "{{ account.home }}/.zshrc"
- name: install oh-my-zsh
become_user: "{{ account.name }}"
shell:
cmd: sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh) --unattended --keep-zshrc"
creates: "{{ account.home }}/.oh-my-zsh"
- name: change login shell to zsh
user:
name: "{{ username }}"
shell: /usr/bin/zsh