Browse Source

minor changes to pdm-shell

feature/startup-from-labels
Mar Alegre 5 years ago
parent
commit
c24fa52569
  1. 6
      bin/pdm-shell
  2. 2
      src/mcbe/assets/minecraft/server.properties

6
bin/pdm-shell

@ -5,12 +5,14 @@ if [[ -z $1 || $1 == "-h" || $1 == "--help" ]]; then
Runs a bash shell on the given container. If second argument is
omitted, an interactive login shell is launched. If second argument
is given, the string is interpreted as a command and executed."
is given, the string is interpreted as a command and executed directly.
To ensure that any shell syntax is evaluated in the container shell
instead of the local shell, wrap your command in single quotes."
exit 1
fi
if [[ -z $2 ]]; then
podman exec -it $1 bash -l
else
podman exec -it $1 bash -c "$2"
podman exec -it $1 bash -c "${*:2}"
fi

2
src/mcbe/assets/minecraft/server.properties

@ -36,7 +36,7 @@ server-portv6=19133
# Which IPv6 port the server should listen to.
# Allowed values: Integers in the range [1, 65535]
view-distance=60
view-distance=64
# The maximum allowed view distance in number of chunks.
# Allowed values: Any positive integer.

Loading…
Cancel
Save