8 lines
100 B
Bash
Executable file
8 lines
100 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ -f /app/tmp/pids/server.pid ]; then
|
|
rm /app/tmp/pids/server.pid
|
|
fi
|
|
|
|
exec "$@"
|
|
|