allow packages from repo repo to fail on login container

This commit is contained in:
Jörg Thalheim 2015-10-15 12:28:24 +00:00
parent 36295a5bb4
commit 264e3e7928
1 changed files with 7 additions and 1 deletions

View File

@ -2,8 +2,14 @@
pacman: update_cache=yes
- name: install essential packages
pacman:
name="htop,strace,the_silver_searcher,zsh,git,sudo,neovim-git,ca-certificates-dn42"
name="htop,strace,the_silver_searcher,zsh,git,sudo"
state=present
- name: install packages from repo
pacman:
name="neovim-git,ca-certificates-dn42"
state=present
# fails on login, because it does not have the repo
ignore_errors: yes
- file: src=/usr/bin/nvim dest=/usr/local/bin/vim state=link
- locale_gen: name=de_DE.UTF-8 state=present
- locale_gen: name=en_DK.UTF-8 state=present