ipmroved documentation and fixed typos
This commit is contained in:
parent
38cacfe240
commit
5a9d0cf184
|
@ -11,7 +11,7 @@
|
||||||
|
|
||||||
## Overview
|
## Overview
|
||||||
|
|
||||||
Manage NFS (client) installation and configuration.
|
This role manages NFS client installation and configuration using fixed ports.
|
||||||
|
|
||||||
## Role Variables
|
## Role Variables
|
||||||
|
|
||||||
|
|
|
@ -5,10 +5,10 @@
|
||||||
nfs_cli_manage: true
|
nfs_cli_manage: true
|
||||||
nfs_cli_pkg_state: 'installed'
|
nfs_cli_pkg_state: 'installed'
|
||||||
nfs_cli_conf_path: '/etc/default/nfs-common'
|
nfs_cli_conf_path: '/etc/default/nfs-common'
|
||||||
nfs_cli_conf_tpl: 'etc/default/nfs-common.j2'
|
nfs_cli_conf_tpl: 'etc/default/nfs-common.j2' # TODO : hide this variable from user, this is for this role's internal use
|
||||||
|
|
||||||
nfs_quota_conf_path: '/etc/default/quota'
|
nfs_quota_conf_path: '/etc/default/quota'
|
||||||
nfs_quota_conf_tpl: 'etc/default/quota.j2'
|
nfs_quota_conf_tpl: 'etc/default/quota.j2' # TODO : hide this variable from user, this is for this role's internal use
|
||||||
|
|
||||||
# rpcbind
|
# rpcbind
|
||||||
nfs_rpc_nfsd: '2049'
|
nfs_rpc_nfsd: '2049'
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
galaxy_info:
|
galaxy_info:
|
||||||
author: "Jérémy Gardais"
|
author: "Jérémy Gardais"
|
||||||
description: "Manage NFS (client/server) installation and configuration"
|
description: "This role manages NFS client installation and configuration using fixed ports"
|
||||||
license: WTFPL
|
license: WTFPL
|
||||||
company: IPR
|
company: IPR
|
||||||
issue_tracker_url: https://git.ipr.univ-rennes1.fr/cellinfo/ansible.nfs/issues
|
issue_tracker_url: https://git.ipr.univ-rennes1.fr/cellinfo/ansible.nfs/issues
|
||||||
|
|
|
@ -1,23 +1,23 @@
|
||||||
---
|
---
|
||||||
# tasks file for nfs
|
# tasks file for role nfs
|
||||||
|
|
||||||
- name: Load specific OS vars for nfs
|
- name: load operating system specific variables for nfs
|
||||||
include_vars: "{{ item }}"
|
include_vars: "{{ item }}" # includes yml file containing os specific variable, eg "debian.yml" found in role_root/vars
|
||||||
with_first_found:
|
with_first_found:
|
||||||
- "{{ ansible_distribution|lower }}-{{ ansible_distribution_version }}.yml"
|
- "{{ ansible_distribution|lower }}-{{ ansible_distribution_version }}.yml"
|
||||||
- "{{ ansible_distribution|lower }}.yml"
|
- "{{ ansible_distribution|lower }}.yml"
|
||||||
- "{{ ansible_os_family|lower }}.yml"
|
- "{{ ansible_os_family|lower }}.yml"
|
||||||
|
|
||||||
# client {{{
|
# client {{{
|
||||||
- name: client package
|
- name: ensure nfs client package is in the required install state
|
||||||
package:
|
package:
|
||||||
name: '{{ item }}'
|
name: '{{ item }}' # TODO: why not simply {{ nfs_cli_pkg_list }} ?
|
||||||
state: '{{ nfs_cli_pkg_state }}'
|
state: '{{ nfs_cli_pkg_state }}'
|
||||||
with_items:
|
with_items:
|
||||||
- '{{ nfs_cli_pkg_list }}'
|
- '{{ nfs_cli_pkg_list }}'
|
||||||
when: nfs_cli_manage
|
when: nfs_cli_manage
|
||||||
|
|
||||||
- name: CONFIG nfs-client
|
- name: configure nfs-client
|
||||||
template:
|
template:
|
||||||
src: '{{ nfs_cli_conf_tpl }}'
|
src: '{{ nfs_cli_conf_tpl }}'
|
||||||
dest: '{{ nfs_cli_conf_path }}'
|
dest: '{{ nfs_cli_conf_path }}'
|
||||||
|
@ -27,7 +27,7 @@
|
||||||
backup: true
|
backup: true
|
||||||
when: nfs_cli_manage
|
when: nfs_cli_manage
|
||||||
|
|
||||||
- name: CONFIG nfs-quota
|
- name: configure nfs-quota
|
||||||
template:
|
template:
|
||||||
src: '{{ nfs_quota_conf_tpl }}'
|
src: '{{ nfs_quota_conf_tpl }}'
|
||||||
dest: '{{ nfs_quota_conf_path }}'
|
dest: '{{ nfs_quota_conf_path }}'
|
||||||
|
@ -37,7 +37,7 @@
|
||||||
backup: true
|
backup: true
|
||||||
when: nfs_cli_manage
|
when: nfs_cli_manage
|
||||||
|
|
||||||
- name: CONFIG add rpcbind services
|
- name: declare rpcbind ports in /etc/services
|
||||||
blockinfile:
|
blockinfile:
|
||||||
state: present
|
state: present
|
||||||
insertafter: EOF
|
insertafter: EOF
|
||||||
|
|
Reference in New Issue