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