Compare commits
2 Commits
007f571224
...
40b3af462d
Author | SHA1 | Date | |
---|---|---|---|
40b3af462d | |||
5f2f3cae5b |
Binary file not shown.
@ -1445,6 +1445,7 @@ class RepoSync:
|
|||||||
"global",
|
"global",
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# Standard ISOs
|
||||||
self.log.info(Color.INFO + 'Starting to sync ISOs to compose')
|
self.log.info(Color.INFO + 'Starting to sync ISOs to compose')
|
||||||
|
|
||||||
if os.path.exists('/usr/bin/fpsync'):
|
if os.path.exists('/usr/bin/fpsync'):
|
||||||
@ -1467,6 +1468,7 @@ class RepoSync:
|
|||||||
else:
|
else:
|
||||||
self.log.info(Color.INFO + message)
|
self.log.info(Color.INFO + message)
|
||||||
|
|
||||||
|
# Live images
|
||||||
if os.path.exists(live_root):
|
if os.path.exists(live_root):
|
||||||
self.log.info(Color.INFO + 'Starting to sync live images to compose')
|
self.log.info(Color.INFO + 'Starting to sync live images to compose')
|
||||||
|
|
||||||
@ -1480,8 +1482,7 @@ class RepoSync:
|
|||||||
else:
|
else:
|
||||||
self.log.info(Color.INFO + message)
|
self.log.info(Color.INFO + message)
|
||||||
|
|
||||||
# Sync the cloud images?
|
# Cloud images
|
||||||
|
|
||||||
if os.path.exists(images_root):
|
if os.path.exists(images_root):
|
||||||
self.log.info(Color.INFO + 'Starting to sync cloud images to compose')
|
self.log.info(Color.INFO + 'Starting to sync cloud images to compose')
|
||||||
|
|
||||||
@ -1499,6 +1500,7 @@ class RepoSync:
|
|||||||
for arch in self.arches:
|
for arch in self.arches:
|
||||||
iso_arch_root = os.path.join(sync_iso_root, arch)
|
iso_arch_root = os.path.join(sync_iso_root, arch)
|
||||||
iso_arch_checksum = os.path.join(iso_arch_root, 'CHECKSUM')
|
iso_arch_checksum = os.path.join(iso_arch_root, 'CHECKSUM')
|
||||||
|
if os.path.exists(iso_arch_root):
|
||||||
with open(iso_arch_checksum, 'w+', encoding='utf-8') as fp:
|
with open(iso_arch_checksum, 'w+', encoding='utf-8') as fp:
|
||||||
for check in glob.iglob(iso_arch_root + '/*.CHECKSUM'):
|
for check in glob.iglob(iso_arch_root + '/*.CHECKSUM'):
|
||||||
with open(check, 'r', encoding='utf-8') as sum:
|
with open(check, 'r', encoding='utf-8') as sum:
|
||||||
@ -1507,17 +1509,28 @@ class RepoSync:
|
|||||||
sum.close()
|
sum.close()
|
||||||
fp.close()
|
fp.close()
|
||||||
|
|
||||||
if arch == 'x86_64' and os.path.exists(sync_live_root):
|
|
||||||
live_arch_root = os.path.join(sync_live_root, arch)
|
live_arch_root = os.path.join(sync_live_root, arch)
|
||||||
live_arch_checksum = os.path.join(live_arch_root, 'CHECKSUM')
|
live_arch_checksum = os.path.join(live_arch_root, 'CHECKSUM')
|
||||||
|
if os.path.exists(live_arch_root):
|
||||||
with open(live_arch_checksum, 'w+', encoding='utf-8') as lp:
|
with open(live_arch_checksum, 'w+', encoding='utf-8') as lp:
|
||||||
for lcheck in glob.iglob(iso_arch_root + '/*.CHECKSUM'):
|
for lcheck in glob.iglob(live_arch_root + '/*.CHECKSUM'):
|
||||||
with open(lcheck, 'r', encoding='utf-8') as sum:
|
with open(lcheck, 'r', encoding='utf-8') as sum:
|
||||||
for line in sum:
|
for line in sum:
|
||||||
lp.write(line)
|
lp.write(line)
|
||||||
sum.close()
|
sum.close()
|
||||||
lp.close()
|
lp.close()
|
||||||
|
|
||||||
|
images_arch_root = os.path.join(sync_images_root, arch)
|
||||||
|
images_arch_checksum = os.path.join(sync_images_root, arch)
|
||||||
|
if os.path.exists(images_arch_root):
|
||||||
|
with open(images_arch_checksum, 'w+', encoding='utf-8') as ip:
|
||||||
|
for icheck in glob.iglob(images_arch_root + '/*.CHECKSUM'):
|
||||||
|
with open(icheck, 'r', encoding='utf-8') as sum:
|
||||||
|
for line in sum:
|
||||||
|
ip.write(line)
|
||||||
|
sum.close()
|
||||||
|
ip.close()
|
||||||
|
|
||||||
# Deploy final metadata for a close out
|
# Deploy final metadata for a close out
|
||||||
self.deploy_metadata(sync_root)
|
self.deploy_metadata(sync_root)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user