rougail-tutorials/Ansible/inventory/group_vars/all/nfs.yml
Emmanuel Garette 6859888e61 [tutorial Ansible 4.2] conditional disabled + hidden
NFS configuration
=================

Need could be activated. In this case, we need to add server domain name

Examples of Ops inventory file
==============================

1/ VALID:

---
env_nfs:
  configure: false

2/ INVALID, configure is false but default:

env_nfs:
  server: another-nfs.silique.fr

3/ VALID:

---
env_nfs:
  configure: true

4/ VALID

env_nfs:
  configure: true
  server: another-nfs.silique.fr
2023-12-18 11:34:36 +01:00

5 lines
172 B
YAML

---
env_nfs_all:
configure: "{{ env_nfs.configure | default(false) }}"
server: "{{ env_nfs.server | default('') }}"
device: "{{ env_nfs.server | default('') }}:/nfs"