added properties to configure the ip and port of the data center.
added code to pass the configuration properties through to the msi installers. #31 #26
This commit is contained in:
parent
def593d3a5
commit
3e2a19c0e4
@ -10,21 +10,25 @@
|
||||
LicenseFile="License.rtf"
|
||||
ThemeFile="Theme.xml" />
|
||||
</BootstrapperApplicationRef>
|
||||
<Variable Name="InstallCardService" Value="0" Type="numeric"/>
|
||||
<Variable Name="InstallDataCenter" Value="0" Type="numeric"/>
|
||||
<Variable Name="InstallCardService" Value="1" Type="numeric"/>
|
||||
<Variable Name="InstallDataCenter" Value="1" Type="numeric"/>
|
||||
<Variable Name="DataServiceIpAddress" Value="127.0.0.1" Type="string"/>
|
||||
<Variable Name="DataServicePort" Value="8800" Type="string"/>
|
||||
<Chain>
|
||||
<MsiPackage SourceFile="$(var.CardReaderServiceInstaller.TargetDir)CardReaderServiceInstaller.msi"
|
||||
Compressed="yes"
|
||||
Visible="no"
|
||||
DisplayName="Card Reader Service"
|
||||
InstallCondition="InstallCardService = 1">
|
||||
|
||||
<MsiProperty Name="SERVICEPORT" Value="[DataServicePort]"/>
|
||||
<MsiProperty Name="SERVICEIP" Value="[DataServiceIpAddress]"/>
|
||||
</MsiPackage>
|
||||
<MsiPackage SourceFile="$(var.DataCenterHostInstaller.TargetDir)WebApiServerHostInstaller.msi"
|
||||
Compressed="yes"
|
||||
Visible="no"
|
||||
DisplayName="Flexitime Data Center"
|
||||
InstallCondition="InstallDataCenter = 1">
|
||||
<MsiProperty Name="ServicePort" Value="[DataServicePort]"/>
|
||||
</MsiPackage>
|
||||
</Chain>
|
||||
</Bundle>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user