CA-324350: When the OVF files are compressed, create manifest and signature on the final package after the compression.

Signed-off-by: Konstantina Chremmou <konstantina.chremmou@citrix.com>
This commit is contained in:
Konstantina Chremmou 2020-09-30 15:11:43 +01:00
parent f24a81bd28
commit d23c40c543

View File

@ -138,20 +138,6 @@ namespace XenAdmin.Actions.OvfActions
OVF.SaveAs(env, ovfPath);
PercentComplete = 85;
CheckForCancellation();
if (m_signAppliance)
{
Description = Messages.SIGNING_APPLIANCE;
OVF.Sign(m_certificate, appFolder, appFile);
}
else if (m_createManifest)
{
Description = Messages.CREATING_MANIFEST;
OVF.Manifest(appFolder, appFile);
}
PercentComplete = 90;
CheckForCancellation();
if (m_createOVA)
@ -159,6 +145,9 @@ namespace XenAdmin.Actions.OvfActions
log.Info($"Archiving OVF package {m_applianceFileName} into OVA");
Description = String.Format(Messages.CREATING_FILE, String.Format("{0}.ova", m_applianceFileName));
ManifestAndSign(appFolder, appFile);
PercentComplete = 90;
try
{
OVF.ConvertOVFtoOVA(env, ovfPath, () => Cancelling, m_compressOVFfiles);
@ -181,12 +170,29 @@ namespace XenAdmin.Actions.OvfActions
{
throw new CancelledException();
}
PercentComplete = 95;
ManifestAndSign(appFolder, appFile);
}
PercentComplete = 100;
Description = Messages.COMPLETED;
}
private void ManifestAndSign(string appFolder, string appFile)
{
if (m_signAppliance)
{
Description = Messages.SIGNING_APPLIANCE;
OVF.Sign(m_certificate, appFolder, appFile);
}
else if (m_createManifest)
{
Description = Messages.CREATING_MANIFEST;
OVF.Manifest(appFolder, appFile);
}
}
private void CheckForCancellation()
{
if (Cancelling)