Docker roles added
[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   failed_when: false
20   no_log: True
21
22 - debug:
23     msg: Docker is not present
24   when: result.rc == 2
25
26 - meta: end_play
27   when: result.rc == 2
28
29 - name: "Uninstall docker engine"
30   command: apt-get purge -y docker-engine
31   ignore_errors: yes
32
33 - name: "Uninstall docker"
34   command: apt-get purge -y docker
35   ignore_errors: yes
36   #when: result is succeeded and ansible_architecture == 'x86_64'
37
38 - name: "Uninstall docker.io"
39   command: apt-get purge -y docker.io
40   ignore_errors: yes
41   #when: result is succeeded and ansible_architecture == 'aarch64'
42
43 - name: "Uninstall docker-ce"
44   command: apt-get purge -y docker-ce
45   ignore_errors: yes
46   #when: result is succeeded and ansible_architecture == 'aarch64'
47
48 - name: "Uninstall docker"
49   command: apt-get purge -y docker-ce-cli
50   ignore_errors: yes
51   #when: result is succeeded