You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
419 B
20 lines
419 B
#!/bin/bash
|
|
|
|
. lib/common
|
|
|
|
set -e
|
|
|
|
DOMAIN=$(relation-get domain) || exit 1
|
|
URL="$(relation-get url)" || exit 1
|
|
PROTO="${URL%%://*}"
|
|
|
|
nextcloud:config:simple:add overwritehost "$DOMAIN" || {
|
|
err "Failed to set ${WHITE}overwritehost${NORMAL} to '$DOMAIN'."
|
|
exit 1
|
|
}
|
|
|
|
nextcloud:config:simple:add overwriteprotocol "$PROTO" || {
|
|
err "Failed to set ${WHITE}overwriteprotocol${NORMAL} to '$PROTO'."
|
|
exit 1
|
|
}
|
|
|