#!/bin/bash # We prevent a few questions from being asked # upon installation by specifying defaults. Namely, # we want the database to be accessed via Unix domain # sockets and password-less. set -e echo taler-merchant taler-merchant/pgsql/method select Unix socket | debconf-set-selections echo taler-merchant taler-merchant/pgsql/authmethod-user select ident | debconf-set-selections echo taler-merchant taler-merchant/pgsql/app-pass password | debconf-set-selections exit 0