1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

setup_docker: handlers to stop service and remove requests (#7022)

This commit is contained in:
Alexei Znamensky 2023-07-28 21:16:25 +12:00 committed by GitHub
parent 00bfc3e131
commit 5d7899b341
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 3 deletions

View file

@ -3,17 +3,29 @@
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
# SPDX-License-Identifier: GPL-3.0-or-later
- name: Remove python requests
ansible.builtin.pip:
name:
- requests
state: absent
- name: Stop docker service
become: true
ansible.builtin.service:
name: docker
state: stopped
- name: Remove Docker packages
package:
ansible.builtin.package:
name: "{{ docker_packages }}"
state: absent
- name: "D-Fedora : Remove repository"
file:
ansible.builtin.file:
path: /etc/yum.repos.d/docker-ce.repo
state: absent
- name: "D-Fedora : Remove dnf-plugins-core"
package:
ansible.builtin.package:
name: dnf-plugins-core
state: absent

View file

@ -41,6 +41,7 @@
ansible.builtin.service:
name: docker
state: started
notify: Stop docker service
- name: Cheat on the docker socket permissions
become: true
@ -53,3 +54,4 @@
name:
- requests
state: present
notify: Remove python requests