Try to fix urxvt TERM issue

This commit is contained in:
Bertrand Benjamin 2018-08-28 12:08:50 +02:00
parent 3f25eac28a
commit 516e6f5ee6
2 changed files with 15 additions and 0 deletions

View File

@ -24,6 +24,7 @@
- iotop
- glances
- ranger
- rxvt-unicode-256color
- name: Install extra CLI packages
apt:

View File

@ -21,6 +21,20 @@
url: curl -fsSL https://download.docker.com/linux/debian/gpg
id: 9DC858229FC7DD38854AE2D88D81803C0EBFCD88
state: present
register: add_repository_key
ignore_errors: "{{ docker_apt_ignore_key_error }}"
- name: Ensure curl is present (on older systems without SNI).
apt:
- name: curl
state: present
when: add_repository_key is failed
- name: Add Docker apt key (alternative for older systems without SNI).
shell: "curl -sSL https://download.docker.com/linux/debian/gpg | sudo apt-key add -"
args:
warn: no
when: add_repository_key is failed
- name: Add Docker repository.
apt_repository: