-
Notifications
You must be signed in to change notification settings - Fork 708
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove explicit LISTEN_PORT from MSI installer #883
Remove explicit LISTEN_PORT from MSI installer #883
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 Like the approach! Much simpler than what I saw a one-liner would be, nice idea of splitting them up instead!
I've just managed to test MSI creation with this branch, and WIX is not happy with the duplicate symbols:
I'll have to find a way to implement this on a single line, which won't be pretty. |
Explicit setting of listening port in the service definition causes port setting in configuration file to be ignored. Exporter already defines a default port (9812) if one is not specified, so no impact from this change is anticipated. Signed-off-by: Ben Reedy <breed808@breed808.com>
I believe I have it now. Using distinct Wix |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I suppose you could set a new property ListenFlag
to the listing of all three if you want to shorten the ServiceInstall
line, but I'm okay with this :)
Nice work!
…port Remove explicit LISTEN_PORT from MSI installer
Explicit setting of listening port in the service definition causes port
setting in configuration file to be ignored.
Exporter already defines a default port (9182) if one is not specified,
so no impact from this change is anticipated.
Resolves #881