Update doc and add meta/ dir
This commit is contained in:
parent
00d2ccada2
commit
89b7509c41
|
@ -29,6 +29,12 @@ Manage to mount local and remote devices.
|
||||||
- hosts: serverXYZ
|
- hosts: serverXYZ
|
||||||
roles:
|
roles:
|
||||||
- role: ipr-cnrs.mounts
|
- 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
|
## Configuration
|
||||||
|
|
|
@ -0,0 +1,22 @@
|
||||||
|
galaxy_info:
|
||||||
|
author: "Jérémy Gardais"
|
||||||
|
description: "Manage local and remote mounts"
|
||||||
|
license: WTFPL
|
||||||
|
company: IPR
|
||||||
|
issue_tracker_url: https://git.ipr.univ-rennes1.fr/cellinfo/ansible.mounts/issues
|
||||||
|
min_ansible_version: 2.2
|
||||||
|
platforms:
|
||||||
|
- name: Debian
|
||||||
|
versions:
|
||||||
|
- stretch
|
||||||
|
#- name: opensuse
|
||||||
|
# versions:
|
||||||
|
# - all
|
||||||
|
# - 12.1
|
||||||
|
# - 12.2
|
||||||
|
# - 12.3
|
||||||
|
# - 13.1
|
||||||
|
# - 13.2
|
||||||
|
galaxy_tags:
|
||||||
|
- system
|
||||||
|
- mount
|
Reference in New Issue