mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
13 lines
177 B
Bash
Executable file
13 lines
177 B
Bash
Executable file
#!/bin/bash
|
|
RAILS_ENV=$1
|
|
APP_PORT=$2
|
|
WS_PORT=$3
|
|
EXIT=$4 || 0
|
|
|
|
script/scheduler.rb stop
|
|
script/websocket-server.rb stop
|
|
kill $(cat tmp/pids/server.pid)
|
|
|
|
rake db:drop
|
|
|
|
exit $EXIT
|