2
0
Fork 0
This role is NO LONGER SUPPORTED, please take a look to DebOps mount and nfs roles
This repository has been archived on 2020-11-04. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Jeremy Gardais 89b7509c41 Update doc and add meta/ dir 2017-07-21 15:47:40 +02:00
defaults Manage /etc/fstab entry. 2017-07-21 15:20:07 +02:00
handlers Restart systemd *-fs.target. 2017-07-21 15:35:34 +02:00
meta Update doc and add meta/ dir 2017-07-21 15:47:40 +02:00
tasks Restart systemd *-fs.target. 2017-07-21 15:35:34 +02:00
README.md Update doc and add meta/ dir 2017-07-21 15:47:40 +02:00

README.md

Mounts

  1. Overview
  2. Role Variables
  3. Example Playbook
  4. Configuration
  5. Development
  6. License
  7. Author Information

Overview

Manage to mount local and remote devices.

Role Variables

  • mounts_list: Directory that must contains all informations about devices to mount.
  • mounts_list.name: The path to the mountpoint.
  • mounts_list.src: Path to the local or remove device.
  • mounts_list.fstype: Device filesystem type.
  • mounts_list.opts: Mount options [default: defaults,noatime].
  • mounts_list.state: If the device should be 'mounted', 'present',… [default: present].

Example Playbook

  • Use defaults vars:
- hosts: serverXYZ
  roles:
    - role: ipr-cnrs.mounts
      mounts_list:
        - name: /mnt/storage
          src: 'nfs-share.domain.org:/mnt/share'
          fstype: nfs4
          opts: 'defaults,x-systemd.automount,x-systemd.device-timeout=2,x-systemd.idle-timeout=1min,noatime,noauto'
          state: mounted

Configuration

This role will:

  • Create the mountpoint directory.
  • Add an entry in /etc/fstab.
  • Ensure to mount the device if specified.
  • Restart systemd's filesystem.target to ensure automount device works.

Development

This source code comes from our Gogs instance and the Github repo exist just to be able to send the role to Ansible Galaxy…

But feel free to send issue/PR here :)

Thanks to this hook, Github automatically got updates from our Gogs instance :)

License

WTFPL

Author Information

Jérémy Gardais