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

fix terminfo freebsd

This commit is contained in:
eoli3n 2017-12-22 14:33:16 +01:00
parent a3c6547987
commit d0e28fbffc
2 changed files with 8 additions and 0 deletions

3
TODO

@ -5,3 +5,6 @@
- TOTEST: debian and centos root and user
- TOTEST: ansible provisionner vagrant : https://github.com/hashicorp/vagrant/issues/7890
- TODO: change includes in import tasks to be able to resolv with list-tasks
- TOFIX: freebsd "tput: tgetent failure"
- TOFIX: freebsd terminfo
- TOFIX: zsh-syntax-highlighting wrong path

@ -1,4 +1,9 @@
---
- name: Install ncurses [FreeBSD]
package: name=ncurses state=present
become: True
when: ansible_os_family == "FreeBSD"
- name: Install termite terminfo (Common)
shell: tic -x termite/termite.terminfo
when: ansible_os_family != "Archlinux"