Skip to content

Commit db5a1d1

Browse files
committed
Fix stop command for Spigot
`/stop` works for Minecraft, but fails for Spigot. `stop` works for both.
1 parent 397945f commit db5a1d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tasks/configure.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# We send the stop command to the stdin to stop the server right after it
33
# starts.
44
- name: generate server.properties
5-
shell: echo "/stop" | java -jar {{ minecraft_jar }} nogui
5+
shell: echo "stop" | java -jar {{ minecraft_jar }} nogui
66
args:
77
creates: server.properties
88
chdir: "{{ minecraft_home }}"

0 commit comments

Comments
 (0)