6 lines
187 B
Bash
6 lines
187 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
HOST="${DOMAIN}"
|
||
|
[ "${PORT}" != "443" ] && HOST="${DOMAIN}:${PORT}"
|
||
|
sed -i "s|\(^server\.url=\).*|\1https://motech.${HOST}|" /srv/motech/conf/config/motech-settings.properties
|