423397 - Jetty server does not run on Linux server startup because of
a bug in jetty.sh script. Fixed by using the "*" instead of "+" for numbers so that sed does not complain and it's also non-GNU compliant.
This commit is contained in:
parent
3eb959a1e2
commit
7a235e6e69
|
@ -6,7 +6,7 @@
|
|||
# Set the name which is used by other variables.
|
||||
# Defaults to the file name without extension.
|
||||
##################################################
|
||||
NAME=$(echo $(basename $0) | sed -e 's/^[SK][0-9]+//' -e 's/\.sh$//')
|
||||
NAME=$(echo $(basename $0) | sed -e 's/^[SK][0-9]*//' -e 's/\.sh$//')
|
||||
|
||||
# To get the service to restart correctly on reboot, uncomment below (3 lines):
|
||||
# ========================
|
||||
|
|
Loading…
Reference in New Issue