a28fcdbf262dc915859b4e11c61637a0def5b884
[ealt-edge.git] / ocd / infra / playbooks / roles / docker / tasks / uninstall.yml
1 # Copyright 2020 Huawei Technologies Co., Ltd.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #     http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 ---
16 - name: Check whether docker is installed before deleting
17   command: docker version
18   register: result
19   ignore_errors: yes
20   no_log: True
21
22 - debug:
23     msg: Docker is not present
24   when: result.rc == 2
25
26 - name: "Uninstall docker engine"
27   command: apt-get purge -y docker-engine
28   ignore_errors: yes
29
30 - name: "Uninstall docker"
31   command: apt-get purge -y docker
32   ignore_errors: yes
33   #when: result is succeeded and ansible_architecture == 'x86_64'
34
35 - name: "Uninstall docker.io"
36   command: apt-get purge -y docker.io
37   ignore_errors: yes
38   #when: result is succeeded and ansible_architecture == 'aarch64'
39
40 - name: "Uninstall docker-ce"
41   command: apt-get purge -y docker-ce
42   ignore_errors: yes
43   #when: result is succeeded and ansible_architecture == 'aarch64'
44
45 - name: "Uninstall docker"
46   command: apt-get purge -y docker-ce-cli
47   ignore_errors: yes
48   #when: result is succeeded