From Bugzilla Helper: User-Agent: Mozilla/5.0 (compatible; Konqueror/2.99 (3.0 rc3); Linux) Description of problem: Possible not a bug as probably rhn availability is not enabled for this product yet (?) The up2date_client python program cannot import a module called clap. This was a fresh install on a formated partition, and not an upgrade from 7.2 -> skipjack Traceback (innermost last): File "/usr/sbin/up2date", line 16, in ? from up2date_client import clap ImportError: cannot import name clap Version-Release number of selected component (if applicable): How reproducible: Always Steps to Reproduce: After running rhn_register, run up2date Actual Results: Program fails Expected Results: up2date should have started Additional info:
On line 16 of the up2date python script the import is wrong. This patch fixes it for me. (done with patch -u) --- up2date Tue Mar 26 11:14:44 2002 +++ /usr/sbin/up2date Mon Mar 25 11:52:57 2002 @@ -13,7 +13,7 @@ from up2date_client import config from up2date_client.translate import _, N_, cat from up2date_client import up2date -from up2date_client import clap +import clap try: from rhn import rpclib
*** This bug has been marked as a duplicate of 61749 ***