Try to fix urxvt TERM issue
This commit is contained in:
parent
3f25eac28a
commit
516e6f5ee6
@ -24,6 +24,7 @@
|
|||||||
- iotop
|
- iotop
|
||||||
- glances
|
- glances
|
||||||
- ranger
|
- ranger
|
||||||
|
- rxvt-unicode-256color
|
||||||
|
|
||||||
- name: Install extra CLI packages
|
- name: Install extra CLI packages
|
||||||
apt:
|
apt:
|
||||||
|
@ -21,6 +21,20 @@
|
|||||||
url: curl -fsSL https://download.docker.com/linux/debian/gpg
|
url: curl -fsSL https://download.docker.com/linux/debian/gpg
|
||||||
id: 9DC858229FC7DD38854AE2D88D81803C0EBFCD88
|
id: 9DC858229FC7DD38854AE2D88D81803C0EBFCD88
|
||||||
state: present
|
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.
|
- name: Add Docker repository.
|
||||||
apt_repository:
|
apt_repository:
|
||||||
|
Loading…
Reference in New Issue
Block a user