Add exception handling for lxc-pack

This commit is contained in:
Disassembler 2018-10-02 13:10:24 +02:00
parent b3cde0cdc8
commit 528e676d4d
Signed by: Disassembler
GPG Key ID: 524BD33A0EE29499

View File

@ -24,8 +24,11 @@ def pack(meta_file):
xz_path = '{}.xz'.format(tar_path)
# Remove old package
os.unlink(tar_path)
os.unlink(xz_path)
try:
os.unlink(tar_path)
os.unlink(xz_path)
except:
pass
# Create archive
print('Archiving', meta['lxcpath'])
@ -41,9 +44,11 @@ def pack(meta_file):
print('Registering package')
packages = {}
packages_file = os.path.join(BUILD_ROOT, 'packages')
if os.path.exists(packages_file):
try:
with open(packages_file, 'r') as fd:
packages = json.load(fd)
except:
pass
packages[pkg_name] = meta
with open(packages_file, 'w') as fd:
json.dump(packages, fd, sort_keys=True, indent=4)