mirror of
https://github.com/resf/distro-tools.git
synced 2024-11-22 05:01:26 +00:00
Fix old updateinfo locator
This commit is contained in:
parent
e1f2e757bf
commit
02b4192be5
@ -187,7 +187,6 @@ async def update_repomd_xml(repomd_xml_path: str, updateinfo: dict):
|
|||||||
|
|
||||||
# Parse repomd.xml
|
# Parse repomd.xml
|
||||||
ET.register_namespace("", NS[""])
|
ET.register_namespace("", NS[""])
|
||||||
ET.register_namespace("rpm", NS["rpm"])
|
|
||||||
repomd_xml = ET.parse(repomd_xml_path).getroot()
|
repomd_xml = ET.parse(repomd_xml_path).getroot()
|
||||||
|
|
||||||
# Iterate over data and find type="updateinfo" and delete it
|
# Iterate over data and find type="updateinfo" and delete it
|
||||||
@ -198,15 +197,13 @@ async def update_repomd_xml(repomd_xml_path: str, updateinfo: dict):
|
|||||||
logger.warning("No type found in data, skipping")
|
logger.warning("No type found in data, skipping")
|
||||||
continue
|
continue
|
||||||
if data_type == "updateinfo":
|
if data_type == "updateinfo":
|
||||||
|
# Get the location of the updateinfo file
|
||||||
|
location = data.find("location", NS)
|
||||||
|
existing_updateinfo_path = location.attrib["href"]
|
||||||
|
|
||||||
# Delete the data element
|
# Delete the data element
|
||||||
repomd_xml.remove(data)
|
repomd_xml.remove(data)
|
||||||
|
|
||||||
# Get the location of the updateinfo file
|
|
||||||
location = data.find("location", NS)
|
|
||||||
if not location:
|
|
||||||
logger.warning("No location found in data, skipping")
|
|
||||||
continue
|
|
||||||
existing_updateinfo_path = location.attrib["href"]
|
|
||||||
break
|
break
|
||||||
|
|
||||||
# Create new data element and set type to updateinfo
|
# Create new data element and set type to updateinfo
|
||||||
@ -266,7 +263,10 @@ async def update_repomd_xml(repomd_xml_path: str, updateinfo: dict):
|
|||||||
|
|
||||||
# Delete old updateinfo file
|
# Delete old updateinfo file
|
||||||
if existing_updateinfo_path:
|
if existing_updateinfo_path:
|
||||||
|
try:
|
||||||
os.remove(existing_updateinfo_path)
|
os.remove(existing_updateinfo_path)
|
||||||
|
except FileNotFoundError:
|
||||||
|
logger.warning("File %s not found", existing_updateinfo_path)
|
||||||
|
|
||||||
|
|
||||||
async def run_apollo_tree(
|
async def run_apollo_tree(
|
||||||
|
Loading…
Reference in New Issue
Block a user