mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-17 10:42:25 -05:00
13 lines
305 B
Bash
Executable File
13 lines
305 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
if [ -e "/home/notify-app" ]
|
|
then
|
|
echo "Chown application to be owned by notify-app"
|
|
cd /home/notify-app/;
|
|
chown -R notify-app:govuk-notify-applications notifications-api
|
|
else
|
|
echo "Chown application to be owned by ubuntu"
|
|
cd /home/ubuntu/;
|
|
chown -R ubuntu:ubuntu notifications-api
|
|
fi |