Skip to content

Commit ac78fc1

Browse files
authored
fix(pz): correct start parameters (#4305)
* 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.
1 parent 5f0f12a commit ac78fc1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lgsm/config-default/config-lgsm/pzserver/_default.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,10 @@
1010

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

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

1918
#### LinuxGSM Settings ####
2019

0 commit comments

Comments
 (0)