#!/bin/bash
# Stops the Rails server

# save cyrrebt working directory
here=`pwd`

my_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
source $my_dir/check_app_root

cd $APP_ROOT

pumactl stop

cd $here
