Browse Source

new: [apache] add action ``get-domain`` to linked charms

bgallet/nextcloud
Valentin Lab 4 weeks ago
parent
commit
b1dfcbaa89
  1. 31
      apache/actions/relations/publish-dir/get-domain
  2. 1
      apache/actions/relations/web-proxy/get-domain

31
apache/actions/relations/publish-dir/get-domain

@ -0,0 +1,31 @@
#!/bin/bash
# compose: no-hooks
## Load action gets a first argument a FILE/DIRECTORY/URL holding the necessary files.
##
##
if [ -z "$SERVICE_DATASTORE" ]; then
echo "This script is meant to be run through 'compose' to work properly." >&2
exit 1
fi
usage="$exname [-h|--help]"
while [ "$1" ]; do
case "$1" in
"--help"|"-h")
print_usage
exit 0
;;
*)
err "Unexpected argument '$1'."
exit 1
;;
esac
shift
done
set -e
relation-get url

1
apache/actions/relations/web-proxy/get-domain

@ -0,0 +1 @@
../publish-dir/get-domain
Loading…
Cancel
Save