aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/IMachineUpdateManager.cs
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2019-12-05 11:30:45 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2019-12-05 11:30:45 +0200
commitcd467ed8a6afec8dcf50d8dc71c75d9d445f7489 (patch)
tree0adc1655c1d11c434061993d47ef77e461284f7f /Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/IMachineUpdateManager.cs
parente8c9c0b649f31bf5170be409cdf6925aa9fc11b6 (diff)
downloadTango-cd467ed8a6afec8dcf50d8dc71c75d9d445f7489.tar.gz
Tango-cd467ed8a6afec8dcf50d8dc71c75d9d445f7489.zip
Working on PPC packages...
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/IMachineUpdateManager.cs')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/IMachineUpdateManager.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/IMachineUpdateManager.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/IMachineUpdateManager.cs
index 85d61d4cc..299e18e57 100644
--- a/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/IMachineUpdateManager.cs
+++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/IMachineUpdateManager.cs
@@ -4,6 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.PMR.Synchronization;
+using Tango.PPC.Common.UpdatePackages;
using Tango.PPC.Common.Web;
namespace Tango.PPC.Common.MachineUpdate
@@ -64,5 +65,17 @@ namespace Tango.PPC.Common.MachineUpdate
/// <param name="filePath">The file path.</param>
/// <returns></returns>
Task<UpdatePackageFile> GetUpdatePackageFileInfo(String filePath);
+
+ /// <summary>
+ /// Checks whether any post update packages needs to be installed.
+ /// </summary>
+ /// <returns></returns>
+ Task<bool> PostUpdatePackagesRequired();
+
+ /// <summary>
+ /// Runs all post update packages.
+ /// </summary>
+ /// <returns></returns>
+ Task<PackageRunnerResult> RunPostUpdatePackages();
}
}