Project

Profile

Help

Issue #4490

Updated by daviddavis about 5 years ago

If network is not already online and in case network.service is disabled, the goferd.service will report error in logs: 

 <pre> 
 katello.agent.goferd.plugin:87 - [Errno -2] Name or service not known 
 </pre> 

 It's possible to fix this, when the service-unit is changed like: 

 <pre> ~~~ 
  [Unit] 
  Description=Gofer Agent 
 -After=network.target 
 +After=network-online.target 
 +Wants=network-online.target 
 </pre> ~~~

Back