mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2024-08-30 18:23:09 +00:00
Merge branch 'dev' into bug/pretzel-backup-restart
This commit is contained in:
commit
6c901e5e3e
@ -5,6 +5,7 @@
|
||||
TBD
|
||||
### Bug fixes
|
||||
- Fix SU status not sticking on user creation ([Merge Request](https://gitlab.com/crafty-controller/crafty-4/-/merge_requests/410))
|
||||
- Handle Missing Java From Win Registry ([Merge Request](https://gitlab.com/crafty-controller/crafty-4/-/merge_requests/413))
|
||||
### Tweaks
|
||||
TBD
|
||||
### Lang
|
||||
|
@ -247,11 +247,20 @@ class ServerInstance:
|
||||
"Oracle Java detected. Changing start command to avoid re-exec."
|
||||
)
|
||||
which_java_raw = self.helper.which_java()
|
||||
java_path = which_java_raw + "\\bin\\java"
|
||||
try:
|
||||
java_path = which_java_raw + "\\bin\\java"
|
||||
except TypeError:
|
||||
logger.warning(
|
||||
"Could not find java in the registry even though"
|
||||
" Oracle java is installed. Re-exec expected, but we have no"
|
||||
" other options. CPU stats will not work for process."
|
||||
)
|
||||
java_path = ""
|
||||
if str(which_java_raw) != str(self.helper.get_servers_root_dir) or str(
|
||||
self.helper.get_servers_root_dir
|
||||
) in str(which_java_raw):
|
||||
self.server_command[0] = java_path
|
||||
if java_path != "":
|
||||
self.server_command[0] = java_path
|
||||
else:
|
||||
logger.critcal(
|
||||
"Possible attack detected. User attempted to exec "
|
||||
|
Loading…
Reference in New Issue
Block a user