Skip to content

Commit

Permalink
fix(pz): correct start parameters (#4305)
Browse files Browse the repository at this point in the history
* refactor: remove unnecessary memory allocation in pzserver config

The startparameters variable in the pzserver configuration file was modified to remove the unnecessary memory allocation parameter. This change simplifies the configuration and improves efficiency.

* refactor: simplify startparameters in pzserver config

The startparameters in the pzserver config file have been simplified to only include the server name. This change removes unnecessary parameters and improves readability.
  • Loading branch information
dgibbs64 authored Sep 4, 2023
1 parent 5f0f12a commit ac78fc1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lgsm/config-default/config-lgsm/pzserver/_default.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,10 @@

## Predefined Parameters | https://docs.linuxgsm.com/configuration/start-parameters
ip="0.0.0.0"
javaram="8192" # -Xmx$8192M
adminpassword="CHANGE_ME"

## Server Parameters | https://docs.linuxgsm.com/configuration/start-parameters#additional-parameters
startparameters="--ip ${ip} -adminpassword \"${adminpassword}\" -servername ${selfname} -Xmx${javaram}M"
startparameters="-servername ${selfname}"

#### LinuxGSM Settings ####

Expand Down

0 comments on commit ac78fc1

Please sign in to comment.