initial commit

This commit is contained in:
2024-06-23 11:54:59 +03:00
commit c9200b8d39
20 changed files with 736 additions and 0 deletions

11
postgres-shim.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/sh
set -ef
if [ -n "${CITUS_PGPASSWORD+1}" ] ; then
PGPASSWORD=${CITUS_PGPASSWORD}
export PGPASSWORD
unset CITUS_PGPASSWORD
fi
export PATH="${PATH#/usr/local/sbin:}"
exec postgres "$@"