-
Notifications
You must be signed in to change notification settings - Fork 443
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #140 from sbt/wip/etc-default
Fix #98 java server type includes /etc/default by default
- Loading branch information
Showing
4 changed files
with
44 additions
and
15 deletions.
There are no files selected for viewing
38 changes: 34 additions & 4 deletions
38
src/main/resources/com/typesafe/sbt/packager/archetypes/etc-default-template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,34 @@ | ||
#Some start script options could be overridden here | ||
#RUN_OPTS="" | ||
#DAEMON_USER="" | ||
#JAVA_CMD="" | ||
# ################################# | ||
# ##### Default configuration ##### | ||
# ################################# | ||
|
||
# Available replacements | ||
# ------------------------------------------------ | ||
# ${{author}} debian author | ||
# ${{descr}} debian package description | ||
# ${{exec}} startup script name | ||
# ${{chdir}} app directory | ||
# ${{retries}} retries for startup | ||
# ${{retryTimeout}} retry timeout | ||
# ${{app_name}} normalized app name | ||
# ${{daemon_user}} daemon user | ||
# ------------------------------------------------- | ||
|
||
# Setting -Xmx and -Xms in Megabyte | ||
# -mem 1024 | ||
|
||
# Setting -X directly (-J is stripped) | ||
# -J-X | ||
# -J-Xmx1024 | ||
|
||
# Add additional jvm parameters | ||
# -Dkey=val | ||
|
||
# For play applications you may set | ||
# -Dpidfile.path=/var/run/${{app_name}}.pid | ||
|
||
# Turn on JVM debugging, open at the given port | ||
# -jvm-debug <port> | ||
|
||
# Don't run the java version check | ||
# -no-version-check |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters