mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-12 00:02:36 -05:00
15 lines
198 B
Bash
Executable File
15 lines
198 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
function error_exit
|
|
{
|
|
echo "$1" 1>&2
|
|
exit 0
|
|
}
|
|
|
|
echo "Stopping application"
|
|
if sudo service notifications-api stop; then
|
|
exit 0
|
|
else
|
|
error_exit "Could not stop application"
|
|
fi |