Ansible_workstation/tasks/zsh.yml

27 lines
563 B
YAML
Raw Normal View History

2018-08-22 20:54:51 +00:00
---
2018-11-07 09:57:55 +00:00
# - name: download default grml configuration
# get_url:
# url: http://git.grml.org/f/grml-etc-core/etc/zsh/zshrc
# dest: /etc/zsh/newuser.zshrc.recommended
# backup: yes
#
# - name: download default grml configuration
# get_url:
# url: http://git.grml.org/f/grml-etc-core/etc/zsh/zshrc
# dest: /etc/zsh/zshrc
# force: yes
# backup: yes
2018-08-28 05:54:36 +00:00
2019-03-05 17:28:27 +00:00
- name: Install base CLI packages
pacman:
name: zsh
state: present
2018-08-22 20:54:51 +00:00
- name: Set shell for root to zsh
user:
name: root
shell: /bin/zsh
2018-11-07 09:57:55 +00:00
tags:
- first_deployement
2018-08-22 20:54:51 +00:00