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.
16 lines
491 B
16 lines
491 B
#!/bin/bash
|
|
|
|
## When writing relation script, remember:
|
|
## - they should be idempotents
|
|
## - they can be launched while the dockers is already up
|
|
## - they are launched from the host
|
|
## - the target of the link is launched first, and get a chance to ``relation-set``
|
|
## - both side of the scripts get to use ``relation-get``.
|
|
|
|
relation-set type postgres || {
|
|
err "Could not set relation ${WHITE}type${NORMAL} to 'postgres'."
|
|
exit 1
|
|
}
|
|
|
|
. hooks/postgres_database-relation-joined
|
|
|