Skip to content
Snippets Groups Projects
Commit d6ba4a46 authored by Lars Beckers's avatar Lars Beckers
Browse files

shell: fix deployment of grml zsh config

parent d82582e8
No related branches found
No related tags found
No related merge requests found
......@@ -59,28 +59,32 @@
- packages
- shell
#- name: ensure we have an up-to-date version of grml-zsh-config
# get_url:
# url: https://www.archlinux.org/packages/extra/any/grml-zsh-config/download/
# dest: "{{ role_path }}/files/"
# delegate_to: localhost
# run_once: True
# register: grml_zsh
# tags:
# - config
# - shell
#
#- name: ensure grml-zsh-config is available
# unarchive:
# src: "{{ grml_zsh.dest }}"
# dest: /
# extra_opts: "--exlcude=.[A-Z]*"
# when:
# - grml_zsh.changed
# - not grml_zsh.failed
# tags:
# - config
# - shell
- name: ensure we have an up-to-date version of grml-zsh-config
get_url:
url: https://www.archlinux.org/packages/extra/any/grml-zsh-config/download/
dest: "{{ role_path }}/files/"
delegate_to: localhost
run_once: True
register: grml_zsh
tags:
- config
- shell
- zsh
- name: ensure grml-zsh-config is available
unarchive:
src: "{{ grml_zsh.dest }}"
dest: /
exclude:
- .BUILDINFO
- .MTREE
- .PKGINFO
when:
- not grml_zsh.failed
tags:
- config
- shell
- zsh
- name: ensure root uses the global zshrc
copy:
......@@ -90,6 +94,7 @@
tags:
- config
- shell
- zsh
- name: ensure deployment of a fancy vimrc for root
copy:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment