mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-15 08:35:21 +08:00
10 lines
No EOL
225 B
Bash
Executable file
10 lines
No EOL
225 B
Bash
Executable file
#!/bin/bash
|
|
FILE=/tmp/kill_db_done
|
|
|
|
if [ -f $FILE ]
|
|
then
|
|
echo "File $FILE exists..."
|
|
else
|
|
ps xa | grep postgres: | grep $POSTGRESQL_DATABASE | grep -v grep | awk '{print $1}' | sudo xargs kill
|
|
touch /tmp/kill_db_done
|
|
fi |