X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=ocd%2Finfra%2Fplaybooks%2Froles%2Fdocker%2Ftasks%2Funinstall.yml;h=b6920ef28fca3f07f636e5278fb70f46f4d348ee;hb=7d2bf0bf6892cb363e61156577e66d0e655a21e3;hp=d011d181dd30b0e09f1a6483ba87a05638578e38;hpb=97c655ebd49ec7ff289af583750056576c6e338e;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 d011d18..b6920ef 100644 --- a/ocd/infra/playbooks/roles/docker/tasks/uninstall.yml +++ b/ocd/infra/playbooks/roles/docker/tasks/uninstall.yml @@ -29,29 +29,29 @@ # 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' -- 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'