ansible-role-nfs/README.md

41 lines
1.1 KiB
Markdown
Raw Normal View History

2014-03-05 04:38:18 +01:00
# Ansible Role: NFS
[![Build Status](https://travis-ci.org/geerlingguy/ansible-role-nfs.svg?branch=master)](https://travis-ci.org/geerlingguy/ansible-role-nfs)
Installs NFS utilities on RedHat/CentOS or Debian/Ubuntu.
2014-03-05 04:38:18 +01:00
## Requirements
None.
## Role Variables
2014-11-12 22:02:07 +01:00
Available variables are listed below, along with default values (see `defaults/main.yml`):
nfs_exports: []
A list of exports which will be placed in the `/etc/exports` file. See Ubuntu's simple [Network File System (NFS)](https://help.ubuntu.com/14.04/serverguide/network-file-system.html) guide for more info and examples. (Simple example: `nfs_exports: [ "/home/public *(rw,sync,no_root_squash)" ]`).
2014-03-05 04:38:18 +01:00
nfs_rpcbind_state: started
nfs_rpcbind_enabled: true
(RedHat/CentOS/Fedora only) The state of the `rpcbind` service, and whether it should be enabled at system boot.
2014-03-05 04:38:18 +01:00
## Dependencies
None.
## Example Playbook
- hosts: db-servers
roles:
- { role: geerlingguy.nfs }
## License
MIT / BSD
## Author Information
This role was created in 2014 by [Jeff Geerling](https://www.jeffgeerling.com/), author of [Ansible for DevOps](https://www.ansiblefordevops.com/).