You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The pidfile with the screen is being messed up with zombie screens, if the bukkit server is not instantanous "ready" and fails subsequently to start the whole thing up.
Solution:
is_running() {
...
if [ -r "$pidfile" ]
then
screen -wipe >/dev/null # add this line
This will clean up the messed pidfile.
The text was updated successfully, but these errors were encountered:
The pidfile with the screen is being messed up with zombie screens, if the bukkit server is not instantanous "ready" and fails subsequently to start the whole thing up.
Solution:
This will clean up the messed pidfile.
The text was updated successfully, but these errors were encountered: