mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-23 20:36:33 +01:00
f7391e991b
Added brand management files and refactored the following brand variables: * BRANDING_XENSERVER_UPDATE_URL * BRANDING_PERF_ALERT_MAIL_LANGUAGE_DEFAULT * BRANDING_SEARCH * BRANDING_UPDATE * BRANDING_BACKUP * BRANDING_LEGACY_PRODUCT_BRAND * ISO * BRANDING_VERSION_5_6 * BRANDING_VERSION_6_2 * BRANDING_VERSION_6_0 * BRANDING_VERSION_6_5 * BRANDING_VERSION_7_0 * BRANDING_VERSION_7_1_2 * BRANDING_VERSION_8_0 * BRANDING_VERSION_8_1 * BRANDIND_COPYRIGHT * BRANDING_COPYRIGHT_2 Also: Try passing the timestamp server as parameter
60 lines
2.6 KiB
C#
Executable File
60 lines
2.6 KiB
C#
Executable File
namespace XenServerHealthCheck
|
|
{
|
|
partial class ProjectInstaller
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Component Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.XenServerHealthCheckInstaller = new System.ServiceProcess.ServiceInstaller();
|
|
this.XenServerHealthCheckProcessInstaller = new System.ServiceProcess.ServiceProcessInstaller();
|
|
//
|
|
// XenServerHealthCheckInstaller
|
|
//
|
|
this.XenServerHealthCheckInstaller.ServiceName = "XenServerHealthCheck";
|
|
this.XenServerHealthCheckInstaller.StartType = System.ServiceProcess.ServiceStartMode.Automatic;
|
|
this.XenServerHealthCheckInstaller.AfterInstall += new System.Configuration.Install.InstallEventHandler(this.XenServerHealthCheckInstaller_AfterInstall);
|
|
//
|
|
// XenServerHealthCheckProcessInstaller
|
|
//
|
|
this.XenServerHealthCheckProcessInstaller.Account = System.ServiceProcess.ServiceAccount.LocalSystem;
|
|
this.XenServerHealthCheckProcessInstaller.Password = null;
|
|
this.XenServerHealthCheckProcessInstaller.Username = null;
|
|
this.XenServerHealthCheckProcessInstaller.AfterInstall += new System.Configuration.Install.InstallEventHandler(this.XenServerHealthCheckProcessInstaller_AfterInstall);
|
|
//
|
|
// ProjectInstaller
|
|
//
|
|
this.Installers.AddRange(new System.Configuration.Install.Installer[] {
|
|
this.XenServerHealthCheckInstaller,
|
|
this.XenServerHealthCheckProcessInstaller});
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.ServiceProcess.ServiceInstaller XenServerHealthCheckInstaller;
|
|
private System.ServiceProcess.ServiceProcessInstaller XenServerHealthCheckProcessInstaller;
|
|
}
|
|
} |