3 Commits

3 changed files with 9 additions and 5 deletions

View File

@@ -8,7 +8,7 @@ namespace: dede
name: common
# The version of the collection. Must be compatible with semantic versioning
version: 0.3.1
version: 0.3.4
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
readme: README.md

View File

@@ -9,6 +9,7 @@
- docker-compose
- podman-docker
- containerd
- runc
- name: install prerequisites
become: true
@@ -49,9 +50,12 @@
state: present
filename: docker
update_cache: true
repo: >
deb [arch={{ docker_arch.stdout }} signed-by=/etc/apt/keyrings/docker.asc]
https://download.docker.com/linux/debian {{ ansible_distribution_release }} stable
repo: |
Types: deb
URIs: https://download.docker.com/linux/debian
Suites: {{ ansible_distribution_release }}
Components: stable
Signed-By: /etc/apt/keyrings/docker.asc
- name: install docker + compose plugin and dependencies
become: true

View File

@@ -18,11 +18,11 @@
register: locale_config_status
changed_when: false
ignore_errors: true
check_mode: false
ansible.builtin.command:
cmd: localectl status
- name: remember current LANG config
when: not locale_config_status is skipped
ansible.builtin.set_fact:
locale_config_current: "{{ locale_config_status.stdout | regex_search('LANG=([^\n]+)', '\\1') | first }}"