Browse Source

Fix type in deployment documentation

Replace use of `link -s` with `ln -s`.

Fixes gh-3320
pull/3314/merge
Ralph Schaer 11 years ago committed by Phillip Webb
parent
commit
f5830bf46e
  1. 2
      spring-boot-docs/src/main/asciidoc/deployment.adoc

2
spring-boot-docs/src/main/asciidoc/deployment.adoc

@ -362,7 +362,7 @@ Spring Boot application as an `init.d` service simply create a symlink: @@ -362,7 +362,7 @@ Spring Boot application as an `init.d` service simply create a symlink:
[indent=0,subs="verbatim,quotes,attributes"]
----
$ sudo link -s /var/myapp/myapp.jar /etc/init.d/myapp
$ sudo ln -s /var/myapp/myapp.jar /etc/init.d/myapp
----
TIP: It is advisable to create a specific user account to run you application. Ensure

Loading…
Cancel
Save