Jira (FACT-3168) networking.domain does resolv to dot

2022-12-07 Thread Tim Meusel (Jira)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Tim Meusel commented on  FACT-3168  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: networking.domain does resolv to dot   
 

  
 
 
 
 

 
 Morgan Rhodes you closed this, but I still think this is a valid bug. Can you please elaborate why you closed it?  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.20.11#820011-sha1:0629dd8)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Puppet Bugs" group.
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-bugs/JIRA.475723.1669812351000.64066.1670404920240%40Atlassian.JIRA.


Jira (FACT-3168) networking.domain does resolv to dot

2022-12-01 Thread Mike Fröhner
Title: Message Title


 
 
 
 

 
 
 

 
   
 Mike Fröhner updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Facter /  FACT-3168  
 
 
  networking.domain does resolv to dot   
 

  
 
 
 
 

 
Change By: 
 Mike Fröhner  
 
 
Priority: 
 Critical Normal  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.20.11#820011-sha1:0629dd8)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Puppet Bugs" group.
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-bugs/JIRA.475723.1669812351000.62519.1669908720185%40Atlassian.JIRA.


Jira (FACT-3168) networking.domain does resolv to dot

2022-12-01 Thread Mike Fröhner
Title: Message Title


 
 
 
 

 
 
 

 
   
 Mike Fröhner commented on  FACT-3168  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: networking.domain does resolv to dot   
 

  
 
 
 
 

 
 Well we fixed it via setting a search domain via /etc/systemd/resolved.conf. I think this can be closed.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.20.11#820011-sha1:0629dd8)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Puppet Bugs" group.
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-bugs/JIRA.475723.1669812351000.62518.1669908720061%40Atlassian.JIRA.


Jira (FACT-3168) networking.domain does resolv to dot

2022-11-30 Thread Mike Fröhner
Title: Message Title


 
 
 
 

 
 
 

 
   
 Mike Fröhner updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Facter /  FACT-3168  
 
 
  networking.domain does resolv to dot   
 

  
 
 
 
 

 
Change By: 
 Mike Fröhner  
 

  
 
 
 
 

 
 We recently have upgraded to puppet 7.0.18 and facter 4.2.13 for our Ubuntu 22.04 nodes.Since this upgrade all Ubuntu 22.04 do resolv the facts `networking.domain` to `.` and `networking.fqdn` to `hostname..`.This comes from [the resolver](https://github.com/puppetlabs/facter/blob/4.2.13/lib/facter/resolvers/linux/hostname.rb#L101).And Systemd resolved settings: https://github.com/systemd/systemd/commit/b3ffa2b5f3aa68dc6ab15893d5eeba8906aa3a9eWith the default Ubuntu 22.04 resolv.conf setting which is a symlinked /etc/resolv.conf file to /run/systemd/resolve/stub-resolv.conf which is written by the systemd service `systemd-resolved` containing a config with `search .`.Therefore all values with:```Stdlib::Host $hostname = $facts['networking']['fqdn']```are broken.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.20.11#820011-sha1:0629dd8)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you

Jira (FACT-3168) networking.domain does resolv to dot

2022-11-30 Thread Mike Fröhner
Title: Message Title


 
 
 
 

 
 
 

 
   
 Mike Fröhner updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Facter /  FACT-3168  
 
 
  networking.domain does resolv to dot   
 

  
 
 
 
 

 
Change By: 
 Mike Fröhner  
 

  
 
 
 
 

 
 We recently have upgraded to puppet 7.0.18 and facter 4.2.13 for our Ubuntu 22.04 nodes.Since this upgrade all Ubuntu 22.04 do resolv the facts `networking.domain` to `.` and `networking.fqdn` to `hostname..`.This comes from [the resolver](https://github.com/puppetlabs/facter/blob/4.2.13/lib/facter/resolvers/linux/hostname.rb#L101). Andhttps://github.com/systemd/systemd/commit/b3ffa2b5f3aa68dc6ab15893d5eeba8906aa3a9e With the default Ubuntu 22.04 resolv.conf setting which is a symlinked /etc/resolv.conf file to /run/systemd/resolve/stub-resolv.conf which is written by the systemd service `systemd-resolved` containing a config with `search .`.Therefore all values with:```Stdlib::Host $hostname = $facts['networking']['fqdn']```are broken.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.20.11#820011-sha1:0629dd8)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Goo

Jira (FACT-3168) networking.domain does resolv to dot

2022-11-30 Thread Mike Fröhner
Title: Message Title


 
 
 
 

 
 
 

 
   
 Mike Fröhner updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Facter /  FACT-3168  
 
 
  networking.domain does resolv to dot   
 

  
 
 
 
 

 
Change By: 
 Mike Fröhner  
 

  
 
 
 
 

 
 We recently have upgraded to puppet 7.0.18 and facter 4.2.13 for our Ubuntu 22.04 nodes.Since this upgrade all Ubuntu 22.04 do resolv the facts `networking.domain` to `.` and `networking.fqdn` to `hostname..`.This comes from [the resolver](https://github.com/puppetlabs/facter/blob/4.2.13/lib/facter/resolvers/linux/hostname.rb#L101). If you have With the default Ubuntu 22.04 resolv.conf setting which is  a symlinked /etc/resolv.conf file to /run/systemd/resolve/stub-resolv.conf which is written by the systemd service `systemd-resolved` containing a config with `search .`  (this is the default for Ubuntu 22 . 04).  Therefore all values with:```Stdlib::Host $hostname = $facts['networking' ] ['fqdn']```are broken.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.20.11#820011-sha1:0629dd8)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Puppet Bugs" gr

Jira (FACT-3168) networking.domain does resolv to dot

2022-11-30 Thread Mike Fröhner
Title: Message Title


 
 
 
 

 
 
 

 
   
 Mike Fröhner updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Facter /  FACT-3168  
 
 
  networking.domain does resolv to dot   
 

  
 
 
 
 

 
Change By: 
 Mike Fröhner  
 
 
Summary: 
 fact  networking.domain does resolv to dot  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v8.20.11#820011-sha1:0629dd8)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Puppet Bugs" group.
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-bugs/JIRA.475723.1669812351000.62086.1669812420030%40Atlassian.JIRA.