remove destructive behaviour by never restarting docker, only reloads
All checks were successful
test / Linting (push) Successful in 36s
test / Molecule tests (default, debian12) (push) Successful in 1m51s
test / Molecule tests (default, debian11) (push) Successful in 2m17s
test / Molecule tests (default, ubuntu2004) (push) Successful in 2m29s
test / Molecule tests (default, ubuntu2204) (push) Successful in 2m0s
test / Molecule tests (with_custom_config, debian11) (push) Successful in 1m44s
test / Molecule tests (with_custom_config, debian12) (push) Successful in 1m55s
test / Molecule tests (with_custom_config, ubuntu2204) (push) Successful in 2m6s
test / Molecule tests (with_custom_config, ubuntu2004) (push) Successful in 2m17s

This commit is contained in:
Bertrand Lanson 2023-09-07 18:01:46 +02:00
parent 29abb1dadf
commit ad984efa64
3 changed files with 10 additions and 5 deletions

View File

@ -6,9 +6,8 @@
enabled: true enabled: true
listen: "systemctl-enable-docker" listen: "systemctl-enable-docker"
- name: "Start docker service" - name: "Reload docker service"
ansible.builtin.service: ansible.builtin.service:
name: docker name: docker
state: restarted state: reloaded
listen: "systemctl-restart-docker" listen: "systemctl-reload-docker"
when: install_docker_start_service

View File

@ -16,4 +16,4 @@
mode: '0644' mode: '0644'
notify: notify:
- "systemctl-enable-docker" - "systemctl-enable-docker"
- "systemctl-restart-docker" - "systemctl-reload-docker"

View File

@ -16,3 +16,9 @@
- name: "Import configure.yml" - name: "Import configure.yml"
ansible.builtin.include_tasks: configure.yml ansible.builtin.include_tasks: configure.yml
- name: "Start docker service"
ansible.builtin.service:
name: docker
state: started
when: install_docker_start_service