1
0
Fork 0
forked from infra/ansible

nfs / client: add some logging to the role to show what mount/dir it's called with

This is useful for places like releng-compose that mount a ton of things
and it's hard to tell which one is failing.

Signed-off-by: Kevin Fenzi <kevin@scrye.com>
This commit is contained in:
Kevin Fenzi 2025-08-08 12:17:31 -07:00
commit 2b21bc41e4

View file

@ -1,5 +1,11 @@
# Setup our idmapd.conf file. It should be loaded automagically.
---
- name: Show role parameters
ansible.builtin.debug:
msg: "NFS client role called with mnt_dir='{{ mnt_dir | default('undefined') }}' and nfs_src_dir='{{ nfs_src_dir | default('undefined') }}'"
tags:
- nfs/client
- name: Idmapd.conf
ansible.builtin.copy: src=idmapd.conf dest=/etc/idmapd.conf
tags: