puppet node hostname

前端 未结 5 1446
暗喜
暗喜 2021-02-03 23:05

I\'m using puppet to configure servers. I want to print current machine (node) name in *.erb template. There is hostname variable, but this holds puppetmaster hostname.

5条回答
  •  别跟我提以往
    2021-02-03 23:29

    Apparently you can now use

    <%= fqdn %> 
    

    and get the DNS reverse name.

    If you need to lowercase it, use

    <%= fqdn.downcase %>
    

提交回复
热议问题