mirror of https://github.com/ceph/ceph-ansible.git
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
parent
d72340abbe
commit
90f222f6a5
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue