mirror of
https://github.com/MariaDB/server.git
synced 2025-01-27 17:33:44 +01:00
2b588155e4
- Introduce MANUFACTURER setting to set package manufacturer via CMake. - Introduce COMMUNITY_BUILD setting to be passed on to packaging (not used here, but required for our own packages to determine what added files should be included in the package). - Create an RTF version of the COPYING text file and use that as the default license (can be overridden by providing a COPYING.rtf file). - Allow passing extra arguments to candle and light via environment. (Need -sval in pushbuild, but want validation elsewhere.) - Introduce a custom action that stops and uninstalls the service if the user installed one that points into the MySQL directory that is being removed. (Our own packages historically used the instance configuration wizard for this, but it wouldn't be very nice if MSIs created by our users couldn't remove it too.) - Make install location configurable again ("Browse" button in custom installation was greyed out before). - Remove registry keys that use "MySQL AB"; they should only be set in packages provided by us. Users can set their own registry keys if they want to.
54 lines
2.4 KiB
Text
54 lines
2.4 KiB
Text
<Include xmlns="http://schemas.microsoft.com/wix/2006/wi"
|
|
xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
|
|
|
|
<!-- Datafiles that installation will copy to CommonAppData (initial database)
|
|
They are declared Permanent and NeverOverwrite since it is user data -->
|
|
<DirectoryRef Id='TARGETDIR'>
|
|
<Directory Id="CommonAppDataFolder">
|
|
<Directory Id="datadir.mysql" Name="MySQL">
|
|
<Directory Id="datadir.mysql.mysqlserver"
|
|
Name="MySQL Server @MAJOR_VERSION@.@MINOR_VERSION@">
|
|
<Directory Id="DATADIR" Name=".">
|
|
<Component Id="component.datadir" Guid="d3491319-5dbc-4477-95f3-4f809ef1dd2d">
|
|
<CreateFolder>
|
|
<util:PermissionEx User="[LogonUser]" GenericAll="yes" />
|
|
</CreateFolder>
|
|
</Component>
|
|
<Directory Id="datadir.mysql.mysqlserver.data" Name="data">
|
|
<Directory Id="datadir.mysql.mysqlserver.data.mysql" Name="mysql">
|
|
<Component Id="component.datadir.mysql"
|
|
Guid="19ec0f1f-1a7f-424e-a788-b09346c0a709"
|
|
Permanent="yes" NeverOverwrite="yes">
|
|
@DATADIR_MYSQL_FILES@
|
|
</Component>
|
|
</Directory>
|
|
<Directory Id="datadir.mysql.mysqlserver.data.performance_schema"
|
|
Name="performance_schema">
|
|
<Component Id="component.datadir.performance_schema"
|
|
Guid="af2a6776-2655-431f-a748-9e9f4645acc3"
|
|
Permanent="yes" NeverOverwrite="yes">
|
|
@DATADIR_PERFORMANCE_SCHEMA_FILES@
|
|
</Component>
|
|
</Directory>
|
|
<Directory Id="datadir.mysql.mysqlserver.data.test" Name="test">
|
|
<Component Id="component.datadir.test" Guid="52fa9f0a-fcd1-420a-b2ac-95a8f70ad20a">
|
|
<CreateFolder/>
|
|
</Component>
|
|
</Directory>
|
|
</Directory>
|
|
</Directory>
|
|
</Directory>
|
|
</Directory>
|
|
</Directory>
|
|
</DirectoryRef>
|
|
|
|
<Feature Id="UserEditableDatafiles" Level='1' Display='hidden' ConfigurableDirectory="DATADIR">
|
|
<ComponentRef Id="component.datadir"/>
|
|
<ComponentRef Id="component.datadir.mysql"/>
|
|
<ComponentRef Id="component.datadir.performance_schema"/>
|
|
<ComponentRef Id="component.datadir.test"/>
|
|
</Feature>
|
|
</Include>
|
|
|
|
|
|
|