19 lines
414 B
YAML
19 lines
414 B
YAML
|
- name: Add azlux.fr GPG apt key
|
||
|
apt_key:
|
||
|
url: https://azlux.fr/repo.gpg.key
|
||
|
state: present
|
||
|
|
||
|
- name: Add azlux.fr repository
|
||
|
apt_repository:
|
||
|
repo: deb http://packages.azlux.fr/debian bookworm main
|
||
|
state: present
|
||
|
|
||
|
- name: install ctop package from azlux.fr
|
||
|
tags: [apt]
|
||
|
apt:
|
||
|
autoremove: yes
|
||
|
update_cache: yes
|
||
|
cache_valid_time: 3600
|
||
|
state: present
|
||
|
name:
|
||
|
- docker-ctop
|