commit 8f908a81d436f1989ca8eb3f910ec4e0f1859958 parent 635fb97de7f7e79bd02cd0b5472f4060ad80bfa9 Author: ms <ms@taler.net> Date: Wed, 14 Jul 2021 10:05:31 +0200 Debian packaging. Making the installer NOT ask the user about protecting the database with password. Also choosing the Unix domain socket to reach the database. Diffstat:
| A | debian/taler-merchant.preinst | | | 9 | +++++++++ |
1 file changed, 9 insertions(+), 0 deletions(-)
diff --git a/debian/taler-merchant.preinst b/debian/taler-merchant.preinst @@ -0,0 +1,9 @@ +#!/bin/bash + +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