commit 081382486af93052261a7432179ccaf8fc25dda6 Author: Jonathan Rosser Date: Wed Jun 17 16:03:31 2020 +0100 Remove fail: tasks before creating mounts We assume that the deployer knows what they are doing so remove these tasks which add extra runtime to deployments and CI tests. Change-Id: I4806ce34a38375461f4de1cc69c7e05cd86ff602 diff --git a/tasks/main.yml b/tasks/main.yml index 40a5a5f..0de2205 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -13,32 +13,5 @@ # See the License for the specific language governing permissions and # limitations under the License. -- name: Fail if mount is missing what parameters - fail: - msg: "Mount parameters [ type ] is missing for mount {{ item }}" - with_items: "{{ systemd_mounts }}" - when: - - item.type is undefined - tags: - - always - -- name: Fail if mount is missing what parameters - fail: - msg: "Mount parameters [ what ] is missing for mount {{ item }}" - with_items: "{{ systemd_mounts }}" - when: - - item.what is undefined - tags: - - always - -- name: Fail if mount is missing where parameters - fail: - msg: "Mount parameters [ where ] is missing for mount {{ item }}" - with_items: "{{ systemd_mounts }}" - when: - - item.where is undefined and item.type != 'swap' - tags: - - always - - include_tasks: systemd_mounts.yml with_items: "{{ systemd_mounts }}"