Adding force flag to purge task

This flag will allow ansible replay

Story: 2007960
Task: 42039
Signed-off-by: Suvro Ghosh <suvrojeet.ghosh@windriver.com>
Depends-On: If68d66d799addcd996da4b146d092c855b455aa3
Change-Id: I93821965184d95a00fddd3398a1c214e3d730efa
This commit is contained in:
Suvro Ghosh 2021-03-11 10:38:57 -05:00
parent 53acd319fc
commit df1f8e381d

View File

@ -20,7 +20,7 @@
- block:
- name: Remove application
shell: "source /etc/platform/openrc; system application-remove {{ application }}"
shell: "source /etc/platform/openrc; system application-remove --force {{ application }}"
- name: Wait until application is in the uploaded state
shell: "source /etc/platform/openrc; system application-show {{ application }}
@ -34,4 +34,4 @@
# expect applications to be in the uploaded state now
# because of above check leaving 2 possible states and above code eliminating "applied"
- name: Delete application
shell: "source /etc/platform/openrc; system application-delete {{ application }}"
shell: "source /etc/platform/openrc; system application-delete --force {{ application }}"