Some checks failed
build-debian-package / Build the debian package (push) Failing after 4m7s
9 lines
210 B
Bash
Executable File
9 lines
210 B
Bash
Executable File
#!/bin/bash
|
|
adduser --system alumnihub
|
|
|
|
chown -R alumnihub:root /opt/alumnihub
|
|
|
|
if [ -e /opt/alumnihub/appsettings.json ]; then
|
|
cp /opt/alumnihub/appsettings.release.json /opt/alumnihub/appsettings.json
|
|
fi
|