ansible-role-systemd_mount/tasks/systemd_mounts.yml

67 lines
2.0 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: Escape mount service file name
command: systemd-escape -p --suffix="{{ (item.type == 'swap') | ternary('swap', 'mount') }}" "{{ item.where | default(item.what) }}"
changed_when: false
register: mount_service_name
- name: Create mount target(s)
file:
path: "{{ item.where }}"
state: directory
owner: "{{ item.owner | default(omit) }}"
group: "{{ item.group | default(omit) }}"
mode: "0755"
when:
- item.where is defined
- item.state | default('unknown') != 'absent'
- item.type != 'swap'
tags:
- systemd-mount
- name: Create systemd mount services(s)
config_template:
src: "systemd-mount.j2"
dest: "/etc/systemd/system/{{ mount_service_name.stdout }}"
owner: "root"
group: "root"
mode: "0640"
config_overrides: "{{ item.config_overrides | default({}) }}"
config_type: "ini"
when:
- item.state | default('unknown') != 'absent'
tags:
- systemd-mount
- name: Load mount(s)
systemd:
daemon_reload: yes
name: "{{ mount_service_name.stdout }}"
enabled: "{{ item.enabled | default(true) }}"
state: "{{ item.state | default(omit) }}"
when:
- item.state | default('unknown') != 'absent'
- name: Unload mount(s)
systemd:
daemon_reload: yes
name: "{{ mount_service_name.stdout }}"
enabled: "stopped"
no_block: yes
when:
- item.state | default('unknown') == 'absent'
notify: Remove mount