ansible-role-systemd_mount/tasks/main.yml
Kevin Carter 031ba51726
Add basic tests
This change adds basic tests when creating a mount unit file.
This test will ensure system-mount is functional with a local mounts,
NFS mounts, and swap mounts.

Change-Id: I00dbf7f6ff3b687e622b29808197dbd7427d24fe
Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
2018-03-23 18:12:18 -05:00

45 lines
1.3 KiB
YAML

---
# Copyright 2018, Rackspace US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# 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 }}"