Files
warewulf/overlays/host/rootfs/etc/exports.ww
Jonathon Anderson 6cc13455f6 Move overlays to rootfs and and set ownership
Move all overlay contents to a rootfs subdirectory, which was already
supported, and set ownership to root:root.

Closes #1078

Signed-off-by: Jonathon Anderson <janderson@ciq.com>
2024-02-17 10:39:06 -07:00

15 lines
342 B
Plaintext

{{- if .Nfs.Enabled }}
# This file is autogenerated by warewulf
# Host: {{.BuildHost}}
# Time: {{.BuildTime}}
# Source: {{.BuildSource}}
{{- $network := .Network }}
{{- $netmask := .Netmask }}
{{- range .Nfs.ExportsExtended }}
{{ .Path }} {{ $network }}/{{ $netmask }}({{ .ExportOptions }})
{{- end }}
{{- else }}
{{ abort }}
{{- end }}