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