add quotes around package names added in da6f384

Add quotes around package names added in the commit
da6f384223 so that the difference between
the Ansible variables and package names is clear.

Signed-off-by: Rishabh Dave <ridave@redhat.com>
pull/3320/head
Rishabh Dave 2018-11-08 18:38:07 +05:30 committed by mergify[bot]
parent d72340abbe
commit 90f222f6a5
1 changed files with 3 additions and 3 deletions

View File

@ -507,7 +507,7 @@
- name: remove pip and docker on debian
apt:
name: [python-pip, docker-engine]
name: ['python-pip', 'docker-engine']
state: absent
update_cache: yes
autoremove: yes
@ -515,7 +515,7 @@
- name: remove pip and docker on ubuntu
apt:
name: [python-pip, docker, docker.io]
name: ['python-pip', 'docker', 'docker.io']
state: absent
update_cache: yes
autoremove: yes
@ -546,7 +546,7 @@
block:
- name: remove pip and docker on redhat
dnf:
name: [python-pip, docker-engine, docker]
name: ['python-pip', 'docker-engine', 'docker']
state: absent
- name: remove package dependencies on redhat