X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=ocd%2Finfra%2Fplaybooks%2Froles%2Fdocker%2Ftasks%2Funinstall.yml;h=f75648959263fcc9535f45a4b6a5563a8423372f;hb=559dbfd2d837c68be54f2c0849a80c4cfe4895e2;hp=a28fcdbf262dc915859b4e11c61637a0def5b884;hpb=eb05c8bc1426f5fcc50d03b41ebec552e6db358d;p=ealt-edge.git diff --git a/ocd/infra/playbooks/roles/docker/tasks/uninstall.yml b/ocd/infra/playbooks/roles/docker/tasks/uninstall.yml index a28fcdb..f756489 100644 --- a/ocd/infra/playbooks/roles/docker/tasks/uninstall.yml +++ b/ocd/infra/playbooks/roles/docker/tasks/uninstall.yml @@ -14,35 +14,54 @@ --- - name: Check whether docker is installed before deleting - command: docker version + command: which docker register: result ignore_errors: yes no_log: True - debug: - msg: Docker is not present - when: result.rc == 2 + msg: Uninstalling docker... + when: result.stdout != "" -- name: "Uninstall docker engine" +- debug: +# yamllint disable rule:line-length + msg: Ignore Uninstall Log , Docker not installed +# yamllint disable rule:line-length + when: result.stdout == "" + +- name: "UNINSTALL: Uninstall docker engine" command: apt-get purge -y docker-engine ignore_errors: yes + when: result is succeeded and ansible_architecture == 'aarch64' -- name: "Uninstall docker" +- name: "UNINSTALL: Uninstall docker" command: apt-get purge -y docker ignore_errors: yes + when: result is succeeded and ansible_architecture == 'aarch64' #when: result is succeeded and ansible_architecture == 'x86_64' -- name: "Uninstall docker.io" +- name: "UNINSTALL: Uninstall docker.io" command: apt-get purge -y docker.io ignore_errors: yes - #when: result is succeeded and ansible_architecture == 'aarch64' + when: result is succeeded and ansible_architecture == 'aarch64' -- name: "Uninstall docker-ce" +- name: "UNINSTALL: Uninstall docker-ce" command: apt-get purge -y docker-ce ignore_errors: yes + when: result is succeeded and ansible_architecture == 'aarch64' #when: result is succeeded and ansible_architecture == 'aarch64' -- name: "Uninstall docker" +- name: "UNINSTALL: Uninstall docker" command: apt-get purge -y docker-ce-cli ignore_errors: yes + when: result is succeeded and ansible_architecture == 'aarch64' #when: result is succeeded + +- debug: + msg: "CentOS commands start" + +- name: "UNINSTALL:Uninstalled docker " + shell: + cmd: yes | yum remove docker-ce docker-ce-cli containerd.io + ignore_errors: yes + no_log: true