This commit is contained in:
Jan Bartel 2016-12-22 11:55:44 +11:00
parent 083bb4bd82
commit 2a2af4c026
1 changed files with 6 additions and 5 deletions

View File

@ -546,6 +546,11 @@ public class StartArgs
{
CommandLineBuilder cmd = new CommandLineBuilder();
// Special Stop/Shutdown properties
ensureSystemPropertySet("STOP.PORT");
ensureSystemPropertySet("STOP.KEY");
ensureSystemPropertySet("STOP.WAIT");
if (addJavaInit)
{
cmd.addRawArg(CommandLineBuilder.findJavaBin());
@ -571,11 +576,7 @@ public class StartArgs
cmd.addRawArg(getMainClassname());
}
// Special Stop/Shutdown properties
ensureSystemPropertySet("STOP.PORT");
ensureSystemPropertySet("STOP.KEY");
ensureSystemPropertySet("STOP.WAIT");
// pass properties as args or as a file
if (dryRun && exec_properties == null)
{