Comment 3 for bug 1160148

Revision history for this message
Andy Doan (doanac) wrote :

This is a regression in our latest UTAH version. For some reason it looks like rsyslog messages aren't coming when the system is booted after install. Let's fix this in two phases:

1) fix utah in production today (Tuesday) by commenting out the "wait_for_booted" logic:

diff --git a/utah/provisioning/baremetal/cobbler.py b/utah/provisioning/baremeta
index b2ef03a..e4552c2 100644
--- a/utah/provisioning/baremetal/cobbler.py
+++ b/utah/provisioning/baremetal/cobbler.py
@@ -198,7 +198,7 @@ chroot /target sh -c 'sed "/eth[0-9]/d" -i /etc/network/inte

         if self.installtype == 'desktop':
             # TODO: look into getting this working for d-i installs
- self.rsyslog.wait_for_booted(config.boot_steps)
+ #self.rsyslog.wait_for_booted(config.boot_steps)
             self._removenfs()

         retry(self.sshcheck, logmethod=self.logger.info,

2) debug and understand root cause

I'll get with Max to coordinate releasing a fix.