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.
2017-07-20 11:44:10 +02:00
|
|
|
---
|
|
|
|
# tasks file for nfs
|
2017-07-20 11:57:55 +02:00
|
|
|
|
|
|
|
- name: Load specific OS vars for nfs
|
|
|
|
include_vars: "{{ item }}"
|
|
|
|
with_first_found:
|
|
|
|
- "{{ ansible_distribution|lower }}-{{ ansible_distribution_version }}.yml"
|
|
|
|
- "{{ ansible_distribution|lower }}.yml"
|
|
|
|
- "{{ ansible_os_family|lower }}.yml"
|
|
|
|
|
|
|
|
# client {{{
|
|
|
|
- name: client package
|
|
|
|
package:
|
|
|
|
name: '{{ item }}'
|
|
|
|
state: '{{ nfs_cli_pkg_state }}'
|
|
|
|
with_items:
|
|
|
|
- '{{ nfs_cli_pkg_list }}'
|
|
|
|
# }}}
|