#!/bin/sh postgres_run(){ PGSSLMODE=require PGPASSWORD="$boxconf_password" psql \ --no-align \ --echo-all \ --tuples-only \ --username="$boxconf_username" \ -v ON_ERROR_STOP=1 \ "$@" } postgres_create_role(){ # $1 = postgres_host, $2 = username cat <