SQL> select p.md5sum md5sum,
p.path path
from rhnPackageEVR pe,
rhnPackageName pn,
rhnPackage p,
rhnPackageArch pa
where pn.name = 'hwdata'
and pe.epoch is null
and pe.version = '0.213.6'
and pe.release = '1.el5'
and p.org_id = 1
and p.name_id = pn.id
and p.evr_id = pe.id
and p.package_arch_id = pa.id
and pa.label = 'noarch'
and p.md5sum = 'b6ab9a4d8281c5318c3790d4a4dcac3e' 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 ;

MD5SUM
----------------------------------------------------------------
PATH
--------------------------------------------------------------------------------
b6ab9a4d8281c5318c3790d4a4dcac3e



empty path?

--
Kirill Morozov
KIMO2-RIPE, RHCE

09.02.2009, в 20:26, Pradeep Kilambi написал(а):

Cool, Can you try the following:

* open up sqlplus

* and execute the following query:

select p.md5sum md5sum,
p.path path
from rhnPackageEVR pe,
rhnPackageName pn,
rhnPackage p,
rhnPackageArch pa
where pn.name = 'hwdata'
and pe.epoch is null
and pe.version = '0.213.6'
and pe.release = '1.el5'
and p.org_id = 1
and p.name_id = pn.id
and p.evr_id = pe.id
and p.package_arch_id = pa.id
and pa.label = 'noarch'
and p.md5sum = 'b6ab9a4d8281c5318c3790d4a4dcac3e'

This is the query your push is executing at the time of ISE. Lets see what the db is returning and why the os.join is failing.


_______________________________________________
Spacewalk-list mailing list
[email protected]
https://www.redhat.com/mailman/listinfo/spacewalk-list

Reply via email to