| | |
| | | notifyListeners(getTaskSeparator()); |
| | | setCurrentProgressStep(InstallProgressStep.ENABLING_WINDOWS_SERVICE); |
| | | enableWindowsService(); |
| | | |
| | | checkAbort(); |
| | | } |
| | | |
| | |
| | | notifyListeners(getTaskSeparator()); |
| | | setCurrentProgressStep(InstallProgressStep.STARTING_SERVER); |
| | | new ServerController(this).startServer(); |
| | | |
| | | checkAbort(); |
| | | } |
| | | |
| | | if (mustConfigureReplication()) |
| | | { |
| | | setCurrentProgressStep(InstallProgressStep.CONFIGURING_REPLICATION); |
| | | notifyListeners(getTaskSeparator()); |
| | | |
| | | configureReplication(); |
| | | |
| | | checkAbort(); |
| | | } |
| | | |
| | |
| | | notifyListeners(getTaskSeparator()); |
| | | setCurrentProgressStep(InstallProgressStep.CONFIGURING_ADS); |
| | | updateADS(); |
| | | checkAbort(); |
| | | } |
| | | |
| | | if (mustConfigureReplication()) |
| | | { |
| | | notifyListeners(getTaskSeparator()); |
| | | setCurrentProgressStep(InstallProgressStep.CONFIGURING_REPLICATION); |
| | | configureReplication(); |
| | | checkAbort(); |
| | | } |
| | | |
| | |
| | | setCurrentProgressStep( |
| | | InstallProgressStep.INITIALIZE_REPLICATED_SUFFIXES); |
| | | initializeSuffixes(); |
| | | |
| | | checkAbort(); |
| | | } |
| | | |