X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=ocd%2Finfra%2Fplaybooks%2Froles%2Fdocker%2Ftasks%2Funinstall.yml;h=f75648959263fcc9535f45a4b6a5563a8423372f;hb=refs%2Fchanges%2F39%2F3539%2F1;hp=5a019222a97d62b86c851d4aae08be85d1d3d71f;hpb=8d497c78731b91d7c789398aea10605564dbf983;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 5a01922..f756489 100644 --- a/ocd/infra/playbooks/roles/docker/tasks/uninstall.yml +++ b/ocd/infra/playbooks/roles/docker/tasks/uninstall.yml @@ -14,38 +14,54 @@ --- - name: Check whether docker is installed before deleting - command: docker version + command: which docker register: result - failed_when: false + ignore_errors: yes no_log: True - debug: - msg: Docker is not present - when: result.rc == 2 + msg: Uninstalling docker... + when: result.stdout != "" -- meta: end_play - when: result.rc == 2 +- debug: +# yamllint disable rule:line-length + msg: Ignore Uninstall Log , Docker not installed +# yamllint disable rule:line-length + when: result.stdout == "" -- name: "Uninstall docker engine" +- 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