19 lines
988 B
Plaintext
19 lines
988 B
Plaintext
{{ IncludeBlock "/etc/hosts" "# Do not edit after this line" }}
|
|
# Do not edit after this line
|
|
# This block is autogenerated by warewulf
|
|
# Host: {{.BuildHost}}
|
|
# Time: {{.BuildTime}}
|
|
# Source: {{.BuildSource}}
|
|
{{range $node := $.AllNodes}} {{/* for each node */}}
|
|
# Entry for {{$node.Id.Get}}
|
|
{{- range $devname, $netdev := $node.NetDevs}} {{/* for each network device on the node */}}
|
|
{{- if $netdev.Ipaddr.Defined}} {{/* if we have an ip address on this network device */}}
|
|
{{- if $netdev.Primary.GetB}} {{/* emit the node name as hostname if this is the default */}}
|
|
{{$netdev.Ipaddr.Get}} {{$node.Id.Get}} {{$node.Id.Get}}-{{$devname}} {{$node.Id.Get}}-{{$netdev.Device.Get}}
|
|
{{- else}}
|
|
{{$netdev.Ipaddr.Get}} {{$node.Id.Get}}-{{$devname}} {{$node.Id.Get}}-{{$netdev.Device.Get}}
|
|
{{- end}} {{/* end if default */}}
|
|
{{- end}} {{/* end if ip */}}
|
|
{{- end}} {{/* end for each network device */}}
|
|
{{end}} {{/* end for each node */}}
|