discourse/config/cloud/cloud66/scripts/kill_db.sh
Sam Saffron 20039860eb Moved cloud66 config out of .cloud66 into config/cloud/cloud66 it is way too prominent as the first folder in github
Amended documentation to point to it from the install guide in the alternative section
Removed callout from the ubuntu guide, as it is unrelated
2013-10-15 22:31:57 +11:00

10 lines
225 B
Bash

#!/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